Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 1.07 KB

README.md

File metadata and controls

6 lines (6 loc) · 1.07 KB

Machine Learning course by Andrew Ng (Stanford University)

This repository contains solution to the assignment problems for the course "Machine Learning" by Andrew Ng, probably one of the most famous (and oldest) course offered in this field. It is available free of cost, and I recommend everyone to give it a shot. All the homework problems are in MATLAB/OCTAVE, but I am planning to also upload the Python versions in the near future.

First Programming Assignment (ex1)

involves implementing unsupervised Machine Learning algorithm to predict from the existing features (training data) based on batch gradient descent method (or Normal Eq.). The underlying algorithm essentially solves least square fitting between the training and linear regression prediction.

Second Programming Assignment (ex2)

involves implementing unsupervised Machine Learning algorithm to predict from the existing features based on batch gradient descent method (or Normal Eq.). The underlying algorithm essentially solves least square fitting between the training and logistic regression for classification.