Skip to content

Commit 753c456

Browse files
authored
Update README.md
1 parent 65817aa commit 753c456

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
| Notebook Description| Link | Notes |
44
| -------------------| -----|--------|
55
| Iris Flower Classification | [Iris_flower_classification.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Iris_flower_classification.ipynb) | Build a neural network model using Keras & Tensorflow. Evaluated the model using scikit learn's k-fold cross validation. |
6-
| Recognizing CIFAR-10 images (Part I - Simple model) | [Recognizing-CIFAR-10-images-Simple-Model.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Recognizing-CIFAR-10-images-Simple-Model.ipynb) | Built a simple Convolutional Neural Network(CNN) model to classify CIFAR-10 image dataset with Keras deep learning library achieving classification accuracy of 67.1%. |
7-
| Recognizing CIFAR-10 images (Part II - Improved model) | [Recognizing-CIFAR-10-images-Simple-Model.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Recognizing-CIFAR-10-images-Improved-Model.ipynb) | Built an improved CNN model by adding more layers with Keras deep learning library achieving classification accuracy of 78.65%. |
8-
| Recognizing CIFAR-10 images (Part III - Data Augmentation) | [Recognizing-CIFAR-10-images-Improved-Model-Data-Augmentation.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Recognizing-CIFAR-10-images-Improved-Model-Data-Augmentation.ipynb) | Built an improved CNN model by data augmentation with Keras deep learning library achieving classification accuracy of 80.73%. |
9-
| Traffic Sign Recognition using Deep Learning | [Traffic-Sign-Recognition.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Traffic-Sign-Recognition.ipynb) | Built a deep learning model to detect traffic signs using the German Traffic Sign Recognition Benchmark(GTSRB) dataset achieving an accuracy of 98.4%. |
10-
| Movie Recommendation Engine | [Movie_Recommendation_Engine.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Movie_Recommendation_Engine.ipynb) | Built a movie recommendation engine using k-nearest neighbour algorithm implemented from scratch. |
11-
| Linear Regression | [Linear_Regression.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Linear_Regression.ipynb) | Built a simple linear regression model to predict profit of food truck based on population and profit of different cities. |
12-
| Multivariate Linear Regression | [Multivariate_Linear_Regression.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Multivariate_Linear_Regression.ipynb) | Built a simple multivariate linear regression model to predict the price of a house based on the size of the house in square feet and number of bedrooms in the house. |
6+
| Recognizing CIFAR-10 images (Part I - Simple model) | [Recognizing-CIFAR-10-images-Simple-Model.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Recognizing-CIFAR-10-images-Simple-Model.ipynb) | Build a simple Convolutional Neural Network(CNN) model to classify CIFAR-10 image dataset with Keras deep learning library achieving classification accuracy of 67.1%. |
7+
| Recognizing CIFAR-10 images (Part II - Improved model) | [Recognizing-CIFAR-10-images-Simple-Model.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Recognizing-CIFAR-10-images-Improved-Model.ipynb) | Build an improved CNN model by adding more layers with Keras deep learning library achieving classification accuracy of 78.65%. |
8+
| Recognizing CIFAR-10 images (Part III - Data Augmentation) | [Recognizing-CIFAR-10-images-Improved-Model-Data-Augmentation.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Recognizing-CIFAR-10-images-Improved-Model-Data-Augmentation.ipynb) | Build an improved CNN model by data augmentation with Keras deep learning library achieving classification accuracy of 80.73%. |
9+
| Traffic Sign Recognition using Deep Learning | [Traffic-Sign-Recognition.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Traffic-Sign-Recognition.ipynb) | Build a deep learning model to detect traffic signs using the German Traffic Sign Recognition Benchmark(GTSRB) dataset achieving an accuracy of 98.4%. |
10+
| Movie Recommendation Engine | [Movie_Recommendation_Engine.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Movie_Recommendation_Engine.ipynb) | Build a movie recommendation engine using k-nearest neighbour algorithm implemented from scratch. |
11+
| Linear Regression | [Linear_Regression.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Linear_Regression.ipynb) | Build a simple linear regression model to predict profit of food truck based on population and profit of different cities. |
12+
| Multivariate Linear Regression | [Multivariate_Linear_Regression.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Multivariate_Linear_Regression.ipynb) | Build a simple multivariate linear regression model to predict the price of a house based on the size of the house in square feet and number of bedrooms in the house. |
1313
| Sentiment Analysis of Movie Reviews| [Sentiment_Analysis.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Sentiment_Analysis.ipynb)| Experiment to analyze sentiment according to their movie reviews. |
1414
| Wine quality prediction | [Predicting_wine_quality.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Predicting_wine_quality.ipynb)| Experiment to predict wine quality with feature selection (In progress). |
1515
| Unsupervised Learning | [unsupervised_learning-Part_1.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/unsupervised_learning-Part_1.ipynb)| Hands-on with Unsupervised learning. |
1616
| Autoencoders using Fashion MNIST| [Autoencoder_Fashion_MNIST.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Autoencoder_Fashion_MNIST.ipynb)| Building an autoencoder as a classifier using Fashion MNIST dataset. |
17-
| Logistic Regression| [Logistic_Regression.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Logistic_Regression.ipynb)| Built a logistic regression model from scratch |
17+
| Logistic Regression| [Logistic_Regression.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/Logistic_Regression.ipynb)| Build a logistic regression model from scratch |
1818
| Fuzzy string matching| [fuzzy_string_matching.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/fuzzy_string_matching.ipynb)| To study how to compare strings and determine how similar they are in Python. |
19-
| Spam email classification| [spam_email_classification.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/spam_email_classification.ipynb)| Built a spam detection classification model using an email dataset.
19+
| Spam email classification| [spam_email_classification.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/spam_email_classification.ipynb)| Build a spam detection classification model using an email dataset.
2020
| Customer churn prediction| [customer_churn_prediction.ipynb](https://github.com/chhayac/Machine-Learning-Notebooks/blob/master/customer_churn_prediction.ipynb)| To predict if customers churn i.e. unsubscribed or cancelled their service.|

0 commit comments

Comments
 (0)