- stanford公开课Machine Learning视频教程
- Machine Learning Series Notes -
- Machine Learning-bias & vari
- 2018-06-14 Machine Learning by A
- Machine Learning @ Coursera
- Machine Learning by Andrew Ng -
- Machine Learning by Andrew Ng -
- Machine Learning by Andrew Ng -
- 2018-05-25 Machine Learning by A
- 机器学习概要 - supervised learning
Model Representation
In supervised learning, we have a data set and this data set is called a training set. The algorithm will learn from this data set and find pattern.

Notation:
- m = Number of training examples; 训练样本的数目
- x's = 'input' variables / features; 特征量
- y's = 'output' variables / 'target' variables; 目标变量
(x, y) : one training example; 一个训练样本
( x (i), y (i)) : ith training example; i不是指数,而是指第i行的样本
How supervised learning algorithm works

- Feed training set to learning algorithm.
- Learning algorithm output a function h(hypothesis).
- The function hypothesis takes in the value of x and tries to output the estimated value y.
- h is a function that maps from x's to y's.
Univariate linear regression : 一元线性回归
(Univeriate is a fancy way of saying one variable)
In this case, x is the only variable.
网友评论