Skip to content

Instantly share code, notes, and snippets.

@oem
Created April 15, 2018 12:34
Show Gist options
  • Save oem/73bcddbf406ef6d8c67d49059e8a9773 to your computer and use it in GitHub Desktop.
Save oem/73bcddbf406ef6d8c67d49059e8a9773 to your computer and use it in GitHub Desktop.
def normal_equation(features, labels)
(features.transpose * features).inverse * features.transpose * labels
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment