Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated 2016-11-06-tutorial-1.markdown #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _posts/2016-11-06-tutorial-1.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ $$y=mx+b$$
$$y(x)$$ is our output, or in this case the price of a house, and $$x$$ is our feature, or in this case the size of the house. $$c_{0}$$ is the y intercept, to account for the base price of the house.


Now the question becomes: How does a machine learning algorithm choose $$c_{2}$$ and $$c_{1}$$ so that the line best predicts house prices?
Now the question becomes: How does a machine learning algorithm choose $$c_{1}$$ and $$c_{0}$$ so that the line best predicts house prices?


*It’s worth noting here that the coefficients can actually be found directly and very efficiently through a matrix relation called the [normal equation](http://mathworld.wolfram.com/NormalEquation.html). However, since this method becomes impractical when working with hundreds or thousands of variables, we'll be using the method machine learning algorithms often use.
Expand Down