Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 744 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 744 Bytes

This repository contains example machine learning projects made by me, of all topics based off Andrew Ng's Coursera course.

Linear Regression

Single Variable Regression:

  • Minimizing cost function.
  • Finding appropriate parameters w and b.
  • Gradient Descent

Multi-Variable Regression

  • 3-D representation of gradient descent algorithm.
  • Dot product to calculate predictions.
  • Plotting learning curve to show decreasing cost function.