In this project we have to classify the Fashion-MNIST dataset which contains black and white photos of clothing using classification algorithms. UOI-Project for Machine Learning course.
Download Fashion-MNINST database here
- Nearest Neighbor
- SVM
- Neural Networks
- Accuracy :[(true positives + true negatives) / (positives + negatives)]
- Precision :[true positives / (true positives + false positives)]
- Recall :[true positives / (true positives + false negatives)]
- F1 Score :[2 true positives / (2 true positives + false positives + false negatives)]