Predicting exam score : regression
x(hours) y(score)
training data set. 을 통해서 learning.
labeled data. y is range.
After learning , put x . Then get y.
(Linear) Hypothesis 는 어떤 1차원의 선이 존재할 것이다. 라고 가정하는것.
H(x) = Wx + b
어떤 선이 우리가 찾던 선인가.?
Which hypothesis is better ?
hypothesis 와 data point 와 비교한다 ( 거리를 측정 =cost function,loss function)
Cost function
* How fit the line to our (training) data
H(x) - y ->not good.
(H(x) - y)^2 is formal.
m is number of data.
Learning of linear regression is minimizing cost.
Goal : Minimize cost
minimize cost(W,b)
get the W, b.
'머신러닝' 카테고리의 다른 글
[강의]시즌1 딥러닝의기본 - Multi-variable linear regression (1) | 2017.01.20 |
---|---|
[강의]시즌1 딥러닝의기본 - Linear Regression의 cost 최소화 알고리즘 (0) | 2017.01.20 |
[강의]시즌1 딥러닝의기본 - 기본적인 Machine Learning의 용어와 개념 (0) | 2017.01.20 |
[강의]시즌1 딥러닝의기본 - 수업의 개요 (0) | 2017.01.20 |
[논문] Human-level control through deep reinforcement learning (0) | 2017.01.20 |