其他分享
首页 > 其他分享> > Chapter 5 Machine Learning Basics

Chapter 5 Machine Learning Basics

作者:互联网

《Deep Learning》 读书笔记

写这个笔记的目的有两个:一是以高层的角度把整个章节的内容联系起来,从而加深自己的理解,同时也可以供日后复习使用;二是在日后的组会中可能会降到的时候,有东西可以讲(好偷懒 -_-)。

因为是刚入门的新手,有很多东西还不了解,或者了解的不透彻,肯定会有错误和疏漏的地方,希望大家不吝赐教哈~~

5.1 Learning Algorithms

首先,提出了经典的ML的定义:

A computer program is said to learn from experience E with respect to some class of tasks T and performance measure P , if its performance at tasks in T , as measured by P , improves with experience E.

然后,本章分 3 节分别详细的对定义中的3个实体进行 description(to provide a formal definition of what may be used for each of these entities),然后再最后一小节用 Linear Regression 的例子进行了讲解。

另外,这里引入了 design matrix 的概念。

具体内容可以参阅书籍。

5.2 Capacity, Overfitting and Underfitting

5.2.1 The No Free Lunch Theorem

5.2.2 Regularization

5.3 Hyperparameters and Validation Sets

5.3.1 Cross-Validation

5.4 Estimators, Bias and Variance

上面的都是用来评估机器学习算法学习到的模型的好坏的指标,分别从不同的角度对机器学习算法的性能进行衡量。

5.4.1 Point Estimation

5.4.2 Bias

这点还是比较好理解的,并且bias翻译成偏差,从字面意思也可以看出是和某个值的偏离程度,而这个某个值在机器学习算法中就是整个数据的期望值

5.4.3 Variance and Standard Error

标签:Chapter,学习,training,Basics,模型,generalization,dataset,Machine,set
来源: https://www.cnblogs.com/wangziqiang123/p/11718093.html