Praneeth383 commited on
Commit
df33807
·
1 Parent(s): 3ffdced

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Fashion MNIST Classification
2
+ This is a web application for classifying images of clothing using various machine learning models. The models were trained on the Fashion MNIST dataset, which consists of 70,000 grayscale images of clothing items in 10 categories.
3
+
4
+ Usage
5
+ To use the application, simply upload an image of a clothing item and select a machine learning model from the dropdown menu. The application will then predict the category of clothing the image belongs to and display the predicted label along with the probabilities for each category.
6
+
7
+ Models
8
+ The following machine learning models are available in the application:
9
+
10
+ K-Nearest Neighbors
11
+ Decision Tree
12
+ Random Forest
13
+ AdaBoost
14
+ Gradient Boosting
15
+ The models were trained on the Fashion MNIST dataset using scikit-learn and saved as serialized files using pickle and joblib.
16
+
17
+ Dependencies
18
+ The application requires the following Python packages:
19
+
20
+ tensorflow
21
+ scikit-learn
22
+ joblib
23
+ pillow
24
+ gradio
25
+ You can install them using pip:
26
+
27
+ Copy code
28
+ pip install -r requirements.txt
29
+ Credits
30
+ This application was created by Praneeth Kandugula as a project for Saint Louis University . The machine learning models were trained on the Fashion MNIST dataset, which was created by Zalando Research. The web interface was built using Gradio.