Skip to content

5.1 Learning Algorithms

本段中关于“learning”的定义是引用的如下书籍:

Machine Learning, Tom Mitchell, McGraw Hill, 1997.

5.1.1 The Task, T

本节作者所要表达的主要思想简单描述如下:

人类开发computer program来解决形形色色的problem,这些problem就是program所要执行的task,但是我们知道,program并非万能的,还是有非常非常多的problem是无法使用program来解决的。随着科技的发展,program能够解决的problem也越来越多了,也就是program的能力越来越强了。machine learning algorithm就是一种在一类task中

思考:machine learning algorithm VS 普通algorithm?

machine learning algorithm是一种全新的算法范式,它使program能够“learning”(“learning”在5.1 Learning Algorithms中给出定义)

Learning is our means of attaining the ability to perform the task.

Pattern recognition是一类非常普遍的task,在下节中会进行讨论。