Skip to content

rajatgarg149/ML-Course-Andrew-Ng

Repository files navigation

Machine Learning, Stanford

This repository contains the most recent versions of all projects and peer assessments for the Machine Learning, Andrew Ng Coursera course.

1. Introduction to Data Science in Python

Implement the multivariate linear regression on house pricing data and plot the contour of cost function.

Implement the logistic regression for quality assurance of microchips from a fabrication plant. The model is further improved using regularization techniques.

Implement and compare multi-class logistic regression and neural network over hand-written MNIST dataset. Conclude the advantage of neural network by forming non-linear hypothesis.

Implement the same neural network over MNIST dataset while digging the concept of backpropagation and effect of regularization.

Build model with different parameteric values and study the resulting bias-variance tradeoff.

Build model to get deep understanding of support vector machines b implementing it on spam email classification dataset.

Implement K-means algorithm for image compression by substituting the whole set of colors used in the image by set of color of K centroids. Also, implement the PCA on face dataset for the dimensionality reduction.

Implement the anomaly detection algorithm on server computers by fitting gaussian distribution over dataset. Also, implement the collaborative filtering learning algorithm on movie ratings dataset.