机器学习 深度学习 ai

Artificial Intelligence (AI) will and is currently taking over an important role in our lives — not necessarily through intelligent robots — but a learning algorithm is implemented in many intelligent technologies. Also, Machine Learning and Deep Learning are contemporary important terms in Computer Science. But those AI-related terms are often mixed up or falsely taken as synonyms, which will be clarified in the following.

人工智能(AI)将并且目前正在我们的生活中扮演重要角色,不一定通过智能机器人,而是许多智能技术中都采用了学习算法。 此外,机器学习和深度学习也是计算机科学中的当代重要术语。 但是那些与AI相关的术语经常被混淆或错误地当作同义词,这将在下文中阐明。

The word “intelligence” alone is quite hard to define. One can try it through probably the most popular method: The Turing Test. It argues that intelligence can be identified behavior-based. For instance, regarding a chat-bot, one could say: If it is undistinguishable if the chat partner is a human or computer, the computer can be entitled as “intelligent”, even if it is just an imitation game without any awareness on the computer’s side. Consequently, intelligence has not necessarily something to do with human intelligence. The term Artificial Intelligence was primarily introduced by John McCarthy in 1956 offering a seminar with this as a title. He is therefore often referred to as the Father of AI. He stated: “The study is to proceed on the basis of the conjecture that every aspect of learning or any other feature of intelligence can in principle be so precisely described that a machine can be made to simulate it” and therefore sets a first stone in characterizing Artificial Intelligence. Initially, Machine Learning was not separated from the field of AI, which changed in the 1990s: The scientists started to tackle practical problems and went away from symbolic approaches regarding intelligence. The term of Deep Learning appeared in the year 2000 for the first time describing an Artificial Neural Network.

仅“智能”一词很难定义。 可以尝试通过最流行的方法进行尝试:图灵测试。 它认为可以将智能识别为基于行为的。 例如,对于一个聊天机器人,人们可能会说:如果聊天伙伴是人还是计算机,如果无法区分它,则该计算机可以被称为“智能”,即使它只是一个模仿游戏,而对它却没有任何了解。电脑方面。 因此,情报不一定与人类情报有关。 人工智能一词最初是由约翰·麦卡锡(John McCarthy)在1956年提出的,当时以研讨会为标题。 因此,他经常被称为AI之父。 他说:“这项研究是基于这样的猜想,即原则上可以精确地描述学习的各个方面或智力的任何其他特征,从而可以制造出可以模拟它的机器”,因此奠定了基础。表征人工智能。 最初,机器学习并没有脱离AI领域,而AI领域在1990年代发生了变化:科学家们开始解决实际问题,并摆脱了有关智能的象征性方法。 深度学习这个词首次出现在2000年,描述了人工神经网络。

什么是人工智能? (What is Artificial Intelligence?)

Everyone might have some applications in mind coming from utopias presented in film and fiction or media. AI is basically working with a goal, which is trying to enable machines to make decisions. As already mentioned, the word intelligence can be misleading. Therefore, we now want to go back to the basics trying to bring the fundamental idea of these technologies to you by using examples. One popular example is using oranges and apples. The goal is to teach the machine what an apple and an orange look like and enabling it to separate them. Each fruit has certain features, which have to be told to the algorithm: An apple is red or green, whereas an orange is orange. It has a bumpy surface, while the apple is smooth. Translated to English, you implement in the algorithm: “If something is red or green, is round and has a smooth texture, you call it an apple” and “If something is orange, round and has a bumpy texture you call it an orange”. And this is the first step one must take when it comes to programming an AI-powered software. If the software now recognizes the mentioned features, it can give the output “orange” or “apple”. As a code it looks like this:

每个人可能都会想到来自电影,小说或媒体中呈现的乌托邦的某些应用。 人工智能基本上是与一个目标合作,该目标试图使机器做出决策。 如前所述,“情报”一词可能会引起误解。 因此,我们现在想回到基础知识,尝试通过使用示例将这些技术的基本思想带给您。 一个流行的例子是使用橘子和苹果。 目的是教会机器苹果和橘子的外观,并使它们分开。 每个水果都有某些特征,必须告知算法:苹果是红色或绿色,而橙色是橙色。 它表面凹凸不平,苹果光滑。 翻译成英文,您可以在算法中实现:“如果某物是红色或绿色,圆形并且具有光滑的纹理,则称其为苹果”和“如果某物是橙色,圆形并且具有凹凸不平的纹理,则称其为橙色” ”。 这是编程基于AI的软件时必须采取的第一步。 如果该软件现在能够识别上述功能,则可以将输出设为“橙色”或“苹果”。 作为代码,它看起来像这样:

In this code certain features of oranges and apples are defined
在此代码中,定义了橘子和苹果的某些功能

We can set: Artificial Intelligence means enabling a machine to think and mimic human behavior as it is now possible to take its own decisions.

我们可以设置:人工智能意味着使机器能够思考和模仿人类的行为,因为现在可以自行决定。

什么是机器学习? (What is Machine Learning?)

The algorithm can now decide, whether it is seeing an orange or an apple, because we taught the software what the features of each fruit are and therefore enabled it to decide on its own. This is all fun and games until you cut the orange into eatable pieces. A human can still recognize the apple as apple, but how should the software be able to do it when it goes by an apple being round? It cannot. Now you give the software many pictures of apples in different angles, cut in pieces or in different color shades and add information: Those are all apples. Of course, it is the same with categorizing oranges. The software can now recognize apples and oranges in almost every shape — depending on the amount of data given. How much data is needed as minimum is depending on the application, but there are some good clues. At a bare minimum there should be around 1,000 examples. For average problems with mid complexity 10,000 to 100,000 examples are needed. Regarding the amount of data one can conject: The more the better. Machine Learning is therefore not only about decisions, but rather about being able to broaden your horizon.

该算法现在可以确定是看到橙色还是苹果,这是因为我们教了该软件每种水果的特征,因此可以自行决定。 直到您将橙子切成可食用的块,这都是有趣的游戏。 人们仍然可以将苹果识别为苹果,但是当苹果变圆时,该软件应该如何做到呢? 这不可以。 现在,您可以为该软件提供许多不同角度的苹果图片,切成薄片或以不同的颜色阴影添加信息:这些都是苹果。 当然,对橘子进行分类也是一样。 该软件现在可以识别几乎每种形状的苹果和橙子-取决于给定的数据量。 最少需要多少数据取决于应用程序,但是有一些很好的线索。 最少应该有大约1,000个示例。 对于中等复杂度的平均问题,需要10,000至100,000个示例。 关于人们可以推测的数据量:越多越好。 因此,机器学习不仅与决策有关,而且还与拓宽视野有关。

We can set: Machine Learning is a statistical tool that enables the machine to learn from given data or experience.

我们可以设置:机器学习是一种统计工具,可使机器从给定的数据或经验中学习。

什么是深度学习? (What is Deep Learning?)

As all important inventions of humankind, the field of AI also uses nature as a role model. Deep Learning (DL) is working through a Deep Neural Network orienting itself on the human brain. The Artificial Networks are built with different layers consisting of connected neurons. Each layer can have a special purpose, for example learning to detect patterns in the data, which enables it to recognize objects as the same ones. Another function can be looking for specific pre-set patterns, like a round, red or green object with a smooth surface and considering it as an apple. The information that this is called an apple must be given by human help. Whereas finding out that it is still an apple, even if one half is in the shadow, is something that can be learned unsupervised (without human help) by the algorithm through training data. One should mention that an Artificial Network is not nearly as complicated as a natural one and is not on a human-level intelligent or thinking human-like. Regarding the information processing there are no electrical or chemical impulses rather than a signal being zero or one. But it is indeed inspired by nature and transferred to technology: While a single neuron is not capable of doing something, a whole Neural Network is extremely complex. The behavior of the system is determined by the ways how the neurons are wired together. Each neuron reacts to the incoming signals in a specific way that can also adapt over time. DL is for example also applied in Language Processing. The Artificial Network analyses parts of the speech, like sentence structure, specific word-use or phrases. This allows the algorithm to do natural Language Processing (NLP) and puts the human-machine interaction on a whole new level. This means having a chat with a computer feels like talking to a human.

作为人类的所有重要发明,人工智能领域也将自然作为榜样。 深度学习(DL)正在通过将深度神经网络定位在人脑上的功能。 人工网络由连接神经元的不同层构成。 每一层都可以有特殊的用途,例如学习检测数据中的模式,从而使其能够将对象识别为相同的对象。 另一个功能是寻找特定的预设图案,例如表面光滑的圆形,红色或绿色物体,并将其视为苹果。 称为苹果的信息必须由人工帮助提供。 而即使有一半被发现,它仍然是一个苹果,这是算法可以通过训练数据在无监督的情况下(无需人工帮助)学习的东西。 应该提到的是,人工网络并不像自然网络那样复杂,也不是在人类层面的智能或类似人类的思维上。 关于信息处理,没有电或化学脉冲,而不是信号为零或一。 但这确实是受自然启发并转移到技术上的:虽然单个神经元无法做某事,但整个神经网络却极其复杂。 系统的行为取决于神经元如何连接在一起的方式。 每个神经元都以特定的方式对传入的信号做出React,这种方式也可以随着时间的流逝而适应。 例如,DL也应用于语言处理。 人工网络分析语音的某些部分,例如句子结构,特定的单词用法或短语。 这使算法可以进行自然语言处理(NLP),并将人机交互提升到一个全新的水平。 这意味着与计算机聊天就像在和人聊天。

We can set: Deep Learning is enabling the machine to mimic the human brain through artificial neurons and therefore can identify important features on its own.

我们可以设置:深度学习使机器能够通过人造神经元模仿人类的大脑,因此可以自行识别重要特征。

全部连接 (It is all connected)

There is basically no common definition of Artificial Intelligence and sometimes it is hard to decide whether something can be called Artificial Intelligence or not. Each of the mentioned technologies are connected and part of each other: Deep Learning is a part of Machine Learning, which itself is a part of Artificial Intelligence.

人工智能基本上没有通用的定义,有时很难确定是否可以称为人工智能。 每种提及的技术都是相互联系的,并且是彼此的一部分:深度学习是机器学习的一部分,而机器学习本身是人工智能的一部分。

Deep Learning is considered to be a part of Machine Learning, while it is a part of Artificial Learning
深度学习被认为是机器学习的一部分,而它是人工学习的一部分

‍Going one step back, the word “intelligence” alone is quite hard to define. As explained previously, the Turing Test is a common method. It argues, that something can be identified as intelligent only due to its behavior. Regarding a chat-bot one could say that if it is indistinguishable if it is a human or computer on the other side, the behavior could be determined as “intelligent”, even if it is just an imitation game without any awareness on the computer’s side. And we remember: Even an Artificial Neural Network is only orienting on its natural role model, but is not truly comparable to one. Every intelligent outcome a computer provides is based on the training data given. As mentioned previously regarding the training data one can conject: The more relevant data, the better. This is where the field of AI is related to Data Science. Even the best software-code in the world is worth nothing without sufficient data to learn from it.

向后退一步,仅“智能”一词很难定义。 如前所述,图灵测试是一种常用方法。 它认为,只有某种事物的行为才能被认为是智能的。 关于聊天机器人,可以说,如果它是另一端是人还是计算机,如果无法区分它,则该行为可以被确定为“智能”,即使它只是一个模仿游戏,而对计算机也没有任何了解。 。 我们还记得:即使是人工神经网络也仅以其自然的榜样为导向,但并不能真正与之媲美。 计算机提供的每一个智能结果都是基于给定的训练数据。 如前所述,关于训练数据,人们可以推测:相关数据越多越好。 这就是AI领域与数据科学相关的地方。 没有足够的数据来学习,即使是世界上最好的软件代码也一文不值。

Artificial Intelligence is a part of Data Science
人工智能是数据科学的一部分

方法和问题 (‍Methods and problems)

For Deep Learning we are data-wise not talking about a bare minimum of around 1,000 examples, but rather around 100,000 to 1,000,000 examples to learn from. We are now getting into Big Data spheres in the field of Data Science. This term is also connected to the field of Artificial Intelligence in the way of AI being a part of Data Science. Since one cannot always offer this amount of data, the principle of heuristics can be pulled up. This method uses the information it has and estimates an outcome for the next step based on that. Taking chess-playing as a popular example, the program has the value and position of all figures as input and therefore can predict possible outcomes like losing a figure or winning the game. Despite this is often enough to solve a problem, it is no precise solution. The human brain uses the concept of heuristics daily, hence this is another aspect, where nature as role model can be noticed.

对于深度学习,我们在数据方面并不是在谈论至少约1,000个示例,而是要从中学习100,000至1,000,000个示例。 我们现在正在进入数据科学领域的大数据领域。 该术语也通过AI作为数据科学的一部分与人工智能领域相关联。 由于不能总是提供这么多的数据,因此启发式原理可以被提出。 该方法使用所拥有的信息,并据此估算下一步的结果。 以国际象棋为例,该程序将所有人物的价值和位置作为输入,因此可以预测可能的结果,例如失去人物或赢得比赛。 尽管这通常足以解决问题,但这并不是精确的解决方案。 人脑每天都使用启发式的概念,因此这是另一个方面,可以注意到自然作为榜样。

Besides self-driving cars and image processing of oranges and apples as an example, the state-of-the-art applications are already integrated in our daily lives. For instance, in streaming services each personal recommendation is based on AI-driven algorithms using your data. Here, another example that can be added to the picture processing of our fruit salad: The nearest neighbor classification. Here, the habits of each user are tracked: What kind of movies or series did he or her watch and how did he or her rate them? And now the algorithm compares all users to each other, assuming that people having similar consuming habits might like the same kind of content. For both applications one thing is sure: There is a huge amount of data needed — the more, the better. Hence, the less training data is available the worse is the software’s performance, which is is considered as huge problem for many applications.

除了无人驾驶汽车和橘子和苹果的图像处理以外,最先进的应用程序已经集成到我们的日常生活中。 例如,在流媒体服务中,每个个人推荐都基于使用数据的AI驱动算法。 在这里,可以添加到水果沙拉的图片处理中的另一个示例:最近邻居分类。 在此,可以跟踪每个用户的习惯:他或她观看了哪种电影或电视剧,以及他们如何评价它们? 现在,该算法将所有用户相互比较,并假设有相似消费习惯的人们可能喜欢相同类型的内容。 对于这两个应用程序,可以肯定的是:需要大量的数据-越多越好。 因此,可用的训练数据越少,软件的性能就越差,这对于许多应用程序来说是一个巨大的问题。

渴望获得更多知识 (Hunger for more knowledge)

If you want to learn more about Artificial Intelligence and do some research on Artificial Intelligence, we can recommend a free and open AI online course developed by the University of Helsinki. It is the AI researchers’ aim to educate at least 1% of the world’s society about Artificial Intelligence.

如果您想了解有关人工智能的更多信息并进行人工智能研究,我们可以推荐由赫尔辛基大学开发的免费开放的AI在线课程 。 AI研究人员的目标是教育全世界至少1%的人工智能知识。

翻译自: https://medium.com/swlh/artificial-intelligence-machine-learning-deep-learning-characteristics-and-differences-ddb4bda470c4

机器学习 深度学习 ai


http://www.taodudu.cc/news/show-863476.html

相关文章:

  • 随机模拟_随机模拟可帮助您掌握统计概念
  • 机器学习算法如何应用于控制_将机器学习算法应用于NBA MVP数据
  • 知乎 开源机器学习_使用开源数据和机器学习预测海洋温度
  • :)xception_Xception:认识Xtreme盗梦空间
  • 评估模型如何建立_建立和评估分类ML模型
  • 介绍神经网络_神经网络介绍
  • 人物肖像速写_深度视频肖像
  • 奇异值值分解。svd_推荐系统-奇异值分解(SVD)和截断SVD
  • 机器学习 对模型进行惩罚_使用Streamlit对机器学习模型进行原型制作
  • 神经网络实现xor_在神经网络中实现逻辑门和XOR解决方案
  • sagan 自注意力_请使用英语:自我注意生成对抗网络(SAGAN)
  • pytorch 音频分类_Pytorch中音频的神经风格转换
  • 变压器 5g_T5:文本到文本传输变压器
  • 演示方法:有抱负的分析师
  • 机器学习 模型性能评估_如何评估机器学习模型的性能
  • 深度学习将灰度图着色_通过深度学习为视频着色
  • 工业机器人入门实用教程_机器学习实用入门
  • facebook 图像比赛_使用Facebook的Detectron进行图像标签
  • 营销大数据分析 关键技术_营销分析的3个最关键技能
  • ue4 gpu构建_待在家里吗 为什么不构建GPU Box!
  • 使用机器学习预测天气_使用机器学习的二手车价格预测
  • python集群_使用Python集群文档
  • 马尔可夫的营销归因
  • 使用Scikit-learn,Spotify API和Tableau Public进行无监督学习
  • 街景图像分割_借助深度学习和街景图像进行城市的大规模树木死亡率研究
  • 多目标分类的混淆矩阵_用于目标检测的混淆矩阵
  • 检测和语义分割_分割和对象检测-第2部分
  • watson软件使用_使用Watson Assistant进行多语言管理
  • keras核心已转储_转储Keras-ImageDataGenerator。 开始使用TensorFlow-tf.data(第2部分)
  • 闪亮蔚蓝_在R中构建第一个闪亮的Web应用

机器学习 深度学习 ai_人工智能,机器学习,深度学习-特征和差异相关推荐

  1. 深度学习(一): 人工智能-机器学习-深度学习的区别

    人工智能-机器学习-深度学习 他们之间是有区别的 先来一张图做一下解释 从发展历史上来看 AI:让机器展现出人类智力 回到1956年夏天,在当时的会议上,AI先驱的梦想是建造一台复杂的机器(让当时刚出 ...

  2. 热门 | Google Brain前员工深度盘点2017人工智能和深度学习各大动态

    翻译 | AI科技大本营 参与 | shawn 编辑 | Donna 2017年是人工智能井喷的一年.Google Brain团队前成员Denny Britz在自己的博客WILDML上对过去一年人工智 ...

  3. 2016深度学习统治人工智能?深度学习十大框架

    2019独角兽企业重金招聘Python工程师标准>>> 2015 年结束了,是时候看看 2016 年的技术趋势,尤其是关于深度学习方面. 新智元在 2015 年底发过一篇文章< ...

  4. 人工智能ai 学习_人工智能中强化学习的要点

    人工智能ai 学习 As discussed earlier, in Reinforcement Learning, the agent takes decisions in order to att ...

  5. 机器学习、数据科学、人工智能、深度学习和统计学之间的区别!

    ↑↑↑关注后"星标"Datawhale 每日干货 & 每月组队学习,不错过 Datawhale干货 作者:Vincent Granville,来源:机器之心 在这篇文章中, ...

  6. TensorFlow深度学习算法原理与编程实战 人工智能机器学习技术丛书

    作者:蒋子阳 著 出版社:中国水利水电出版社 品牌:智博尚书 出版时间:2019-01-01 TensorFlow深度学习算法原理与编程实战 人工智能机器学习技术丛书 ISBN:97875170682 ...

  7. 机器学习中的数学 人工智能深度学习技术丛书

    作者:孙博 著 出版社:中国水利水电出版社 品牌:智博尚书 出版时间:2019-11-01 机器学习中的数学 人工智能深度学习技术丛书 ISBN:9787517077190

  8. 一文读懂机器学习、数据科学、人工智能、深度学习和统计学之间的区别!

    点击上方,选择星标或置顶,不定期资源大放送! 阅读大概需要15分钟 Follow小博主,每天更新前沿干货 作者:Vincent Granville 来源:机器之心公众号 链接:http://www.d ...

  9. 图解人工智能机器学习深度学习的关系和区别

    图解人工智能机器学习深度学习的关系和区别,先直观看下图的关系: AI(Artificial Intelligence.人工智能).机器学习(machine learning).深度学习(Deep le ...

最新文章

  1. 在首次发布三周之后,MLflow迎来了0.2版本
  2. 小H和游戏(无根树转有根树,思维)难度⭐⭐⭐★
  3. 图的邻接矩阵存储结构
  4. JAVA中如何确保N个线程可以访问N个资源,但同时又不导致死锁?
  5. 如何分析IBASE对应的icon无法正常显示的问题
  6. java 容器都有哪些?_适合存储普洱茶的容器都有哪些?
  7. 【STM32】点灯仪式
  8. JSON.parse()函数处理json格式字符串方法
  9. 用法 the_英语冠词:不定冠词a,an和定冠词the的用法
  10. 唱歌如何保持高位置_【如何找到唱歌发声的高位置?】
  11. 无线系列-无线通信频段与电波传播
  12. 大数据综合实验的踩坑总结(林子雨)
  13. 三菱触摸屏通讯错误_三菱触摸屏(人机界面)常见问题解析(一)
  14. 配置内网windows域教程,模拟公司内网架构
  15. UI设计,扁平化还是拟物化?
  16. 管理大师德鲁克60句经典名言
  17. RabbitMQ是什么?一些简单的概念
  18. 2017 Python 问卷调查结果初步分析
  19. 白翔团队新作:借助CLIP完成场景文字检测
  20. 计算机网络规划与建设,网络工程规划与设计

热门文章

  1. LUA: lua基础.
  2. kill掉占用端口程序
  3. Linux下OpenSSL的安装与使用
  4. 黄页前台联动菜单修改时不能显示,要重新选择|没样式
  5. Python 爬虫小程序(正则表达式的应用)
  6. $\mathbb{R}^n$中点集概念梳理
  7. java数据结构之排序-- 插入排序算法
  8. GridView简单创建序号列
  9. 解决css firefox火狐浏览器IE浏览器下的兼容性问题
  10. winxp不加载oracle服务器,WinXP系统开机提示“windwos不能加载用户的配置文件”怎么办...