Self-Driving Car Predictions for 2018 from David Silver 关于自动驾驶车辆的2018预测

本文主要是介绍Self-Driving Car Predictions for 2018 from David Silver 关于自动驾驶车辆的2018预测,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

转载自

https://medium.com/self-driving-cars/self-driving-car-predictions-for-2018-ce562be66747

译文为自己翻译,如有错误,敬请指摘。

Here’s what I think the coming year has in store for self-driving cars.

100% Certain

No Level 5 self-driving cars will be deployed anywhere in the world.
No GPS or DGPS system will reliably exceed 10cm localization accuracy on all public roads in the US.

今年L5等级的自动驾驶汽车将不会面世。

在美国的公路上将不会出现可靠定位精度达10厘米的GPS或者DGPS系统。

90% Certain

Level 4 self-driving cars will be available to the general public, on public roads, somewhere in the world.
Deep learning will remain the dominant tool for image classification.
No US road will have a speed limit for autonomous vehicles that is faster than the speed limit for human-driven vehicles.

今年在世界上某些地方,L4等级的自动驾驶汽车将会对公众开放。

深度学习将继续保持在图像分类领域的主导地位。

美国公路对自动驾驶汽车的速度限制将不会超过人类驾驶车辆的速度限制。也就是说自动驾驶车辆的法定最高时速将低于或等于人类驾驶车辆的法定最高时速。

80% Certain

All Level 4 vehicles available to the general public will use lidar.
Somebody will die in a crash while due to a failure of Tesla Autopilot.
Waymo will still have driven more autonomous miles than any other company.
Level 4 self-driving cars will be available to the general public somewhere other than Pittsburgh.
A company will be acquired primarily for its autonomous vehicle capabilities with a valuation above $100M USD.
No dominant technique will emerge for urban motion planning.

所有即将对公众开放的L4等级自动驾驶车辆都将使用雷达。

将会有人在因Tesla Autopilot系统的失误所造成的交通事故中丧命。

Waymo公司将继续保持自动驾驶里程第一的地位。

L4等级自动驾驶汽车会在匹兹堡以外的城市上路。

一家估值超过1亿美元的自动驾驶技术公司将会被收购。

将不会有主导性的技术出现在城市运动规划领域。

70% Certain

Level 4 self-driving cars will be available to the general public somewhere in China.
Tesla will sell the most advanced self-driving system available to the general public.
Deep learning will not be the dominant tool for object classification from point clouds.

L4等级的自动驾驶车辆将会对中国的公众开放。

特斯拉将会出售其所能获得的最先进的自动驾驶系统。

深度学习将不会成为基于点云阵的物体分类的主导工具。

60% Certain

2,000 students will have graduated the Udacity Self-Driving Car Engineer Nanodegree Program.
Level 4 self-driving cars will be available to the general public somewhere in Europe.
Waymo will have exceeded 10 million miles driven.
Tesla will produce 5,000 Model 3 vehicles in a single calendar week.
No member of the general public will die in a Level 4 autonomous vehicle.

将会有2000名学生从Udacity自动驾驶课程毕业。

L4等级的自动驾驶车辆将会对欧洲的公众开放

Waymo公司的自动驾驶里程积累将超过1千万英里。

特斯拉将有能力在一周内量产5000辆Model-3。

将不会有人因L4自动驾驶汽车的上路而丧命。

50% Certain

Cruise Automation will open its Level 4 fleet to the general public.
Level 3 self-driving cars will be available for purchase by the general public.
A company will be acquired primarily for its autonomous vehicle capabilities with a valuation above $1B USD.
1,000 Udacity students will have jobs in the autonomous vehicle industry.
Self-driving cars will be legal for public use somewhere in India.

 克鲁斯将向公众开放其L4等级的自动驾驶车队。

L3等级的自动驾驶车辆将开始向公众出售。

一家估值超过10亿美元的自动驾驶技术公司将会被收购。

1,000名Udacity学生将在无人驾驶汽车行业工作。

自动驾驶车辆在印度的某个地方将合法提供给公众使用。


In a year, I’ll score these and see how I did!

这篇关于Self-Driving Car Predictions for 2018 from David Silver 关于自动驾驶车辆的2018预测的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/332350

相关文章

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

python实现自动登录12306自动抢票功能

《python实现自动登录12306自动抢票功能》随着互联网技术的发展,越来越多的人选择通过网络平台购票,特别是在中国,12306作为官方火车票预订平台,承担了巨大的访问量,对于热门线路或者节假日出行... 目录一、遇到的问题?二、改进三、进阶–展望总结一、遇到的问题?1.url-正确的表头:就是首先ur

Spring使用@Retryable实现自动重试机制

《Spring使用@Retryable实现自动重试机制》在微服务架构中,服务之间的调用可能会因为一些暂时性的错误而失败,例如网络波动、数据库连接超时或第三方服务不可用等,在本文中,我们将介绍如何在Sp... 目录引言1. 什么是 @Retryable?2. 如何在 Spring 中使用 @Retryable

使用 Python 和 LabelMe 实现图片验证码的自动标注功能

《使用Python和LabelMe实现图片验证码的自动标注功能》文章介绍了如何使用Python和LabelMe自动标注图片验证码,主要步骤包括图像预处理、OCR识别和生成标注文件,通过结合Pa... 目录使用 python 和 LabelMe 实现图片验证码的自动标注环境准备必备工具安装依赖实现自动标注核心

QT实现TCP客户端自动连接

《QT实现TCP客户端自动连接》这篇文章主要为大家详细介绍了QT中一个TCP客户端自动连接的测试模型,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录版本 1:没有取消按钮 测试效果测试代码版本 2:有取消按钮测试效果测试代码版本 1:没有取消按钮 测试效果缺陷:无法手动停

BUUCTF靶场[web][极客大挑战 2019]Http、[HCTF 2018]admin

目录   [web][极客大挑战 2019]Http 考点:Referer协议、UA协议、X-Forwarded-For协议 [web][HCTF 2018]admin 考点:弱密码字典爆破 四种方法:   [web][极客大挑战 2019]Http 考点:Referer协议、UA协议、X-Forwarded-For协议 访问环境 老规矩,我们先查看源代码

基于51单片机的自动转向修复系统的设计与实现

文章目录 前言资料获取设计介绍功能介绍设计清单具体实现截图参考文献设计获取 前言 💗博主介绍:✌全网粉丝10W+,CSDN特邀作者、博客专家、CSDN新星计划导师,一名热衷于单片机技术探索与分享的博主、专注于 精通51/STM32/MSP430/AVR等单片机设计 主要对象是咱们电子相关专业的大学生,希望您们都共创辉煌!✌💗 👇🏻 精彩专栏 推荐订阅👇🏻 单片机

Python3 BeautifulSoup爬虫 POJ自动提交

POJ 提交代码采用Base64加密方式 import http.cookiejarimport loggingimport urllib.parseimport urllib.requestimport base64from bs4 import BeautifulSoupfrom submitcode import SubmitCodeclass SubmitPoj():de

Shell脚本实现自动登录服务器

1.登录脚本 login_server.sh #!/bin/bash# ReferenceLink:https://yq.aliyun.com/articles/516347#show all host infos of serverList.txtif [[ -f ./serverList.txt ]]thenhostNum=`cat ./serverList.txt | wc -l`e

Jenkins 通过 Version Number Plugin 自动生成和管理构建的版本号

步骤 1:安装 Version Number Plugin 登录 Jenkins 的管理界面。进入 “Manage Jenkins” -> “Manage Plugins”。在 “Available” 选项卡中搜索 “Version Number Plugin”。选中并安装插件,完成后可能需要重启 Jenkins。 步骤 2:配置版本号生成 打开项目配置页面。在下方找到 “Build Env