MoinulwithAI commited on
Commit
ea1304a
Β·
verified Β·
1 Parent(s): 9eb7e4b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -12
README.md CHANGED
@@ -1,12 +1,26 @@
1
- ---
2
- title: PotatoLeafClassification
3
- emoji: πŸš€
4
- colorFrom: red
5
- colorTo: gray
6
- sdk: gradio
7
- sdk_version: 5.28.0
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # πŸ₯” Potato Leaf Disease Classification
2
+
3
+ This Hugging Face Space allows you to classify potato leaf diseases from images using a trained MobileNetV3 model.
4
+
5
+ ### πŸ“‹ Classes Detected:
6
+ - Bacteria
7
+ - Fungi
8
+ - Healthy
9
+ - Nematode
10
+ - Pest
11
+ - Phytopthora
12
+ - Virus
13
+
14
+ ### 🧠 Model Info:
15
+ - Architecture: MobileNetV3 (from `timm`)
16
+ - Trained with MixUp and advanced augmentations
17
+ - Format: PyTorch `.pth` checkpoint
18
+
19
+ ### πŸš€ How to Use:
20
+ 1. Upload an image of a potato leaf.
21
+ 2. The model will return the predicted disease type with confidence score.
22
+
23
+ ### πŸ€– Powered by:
24
+ - PyTorch
25
+ - Gradio
26
+ - TIMM (PyTorch Image Models)