Skip to content

Instantly share code, notes, and snippets.

@gavinwhyte
Last active August 29, 2015 14:24
Show Gist options
  • Save gavinwhyte/9814c8ce96922c3f1ab4 to your computer and use it in GitHub Desktop.
Save gavinwhyte/9814c8ce96922c3f1ab4 to your computer and use it in GitHub Desktop.
Multiple Linear Regression is the following model.
``` $$
h_{\theta}(x^{(i)}) = \theta^{T}x = \theta_{0} + \theta_{1}x
``` $$
Our model is given by the following formula
Y=Xβ
We know the values of Y and X from our training data. We must find the values
of β , which minimize the cost function. We can solve β as follow:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment