top of page

Machine Learning Algorithms

Implemented following Machine Learning Algorithms using python script

LR
Logistic Regression Algorithm
  • Coded logistic Regression Algorithm on Iris Dataset using MLE. In this code, I have only taken into consideration classes Virginica and non-Virginica

  • For training dataset, I have used features-Sepal length and sepal width and used gradient descent to train the model

  • Learning Rate is tuned to achieve best results. Represented accuracy as well as projected logistic regression graph

Screen Shot 2020-05-25 at 8.33.01 PM.png
PCA
Facial Reconstruction using PCA(Principal Component Analysis) Algorithm

Implemented PCA Algorithm on 177 face images(256*256 pixels /image) for computing n number of eigen faces(n = 10,30,50,100,150) and showed curve, eigen faces generated after implementing PCA and reconstruction errors for each case.

​

Screen Shot 2020-05-25 at 8.31.54 PM.png
Screen Shot 2020-05-25 at 8.32.00 PM.png
kmeans
K-means Algorithm
  • Implemented Kmeans algorithm using EM repetition on initialized points and centeres using Euclidean distance

  • Iterated algorthim till clusters reach convergence

​

Screen Shot 2020-05-25 at 8.32.19 PM.png
NN
Neural Networks Algorithm
  • ​Coded neural networks Algorithm on Iris Dataset with one hidden layer

  • Implemented forward and backward function of neural networks for various activation functions-sigmoid, tanh, ReLU, etc

​

Screen Shot 2020-05-25 at 8.33.33 PM.png

© 2020 Hiloni Mehta All rights reserved

bottom of page