Coursera Machine Learning: Difference between revisions
From Federal Burro of Information
Jump to navigationJump to search
(Created page with " == Administratia == * [https://www.coursera.org/learn/machine-learning/discussions?sort=lastActivityAtDesc&page=1 forums] * [https://www.coursera.org/learn/machine-learning...") |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
* [https://www.coursera.org/learn/machine-learning/supplement/Mlf3e/more-octave-matlab-resources Octave/MATLAB resources] | * [https://www.coursera.org/learn/machine-learning/supplement/Mlf3e/more-octave-matlab-resources Octave/MATLAB resources] | ||
== Week 1 == | |||
regression - continuous value output | |||
classification - discrete value output | |||
m - number of training example | |||
x - input vars | |||
y - output vars | |||
(x,y) - one row of trianing | |||
(x(i),y(i)) = one training example | |||
h - hypothesis | |||
=== linear function === | |||
hΘ(x) = Θ0 + Θ1 x | |||
== Also See == | == Also See == | ||
* [[Machine Leanrning]] | * [[Machine Leanrning]] |
Latest revision as of 06:54, 9 November 2015
Administratia
Week 1
regression - continuous value output
classification - discrete value output
m - number of training example
x - input vars
y - output vars
(x,y) - one row of trianing
(x(i),y(i)) = one training example
h - hypothesis
linear function
hΘ(x) = Θ0 + Θ1 x