Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# πΈ Fulla πΈ
|
| 2 |
|
| 3 |
**Fulla (ΩΩΨ©)** is a deep learning project that classifies flowers from images using a ResNet-based neural network and transfer learning. Built with **PyTorch** and deployed with **Gradio**, this app blends the elegance of nature with the power of machine learning.
|
|
@@ -6,9 +17,9 @@
|
|
| 6 |
|
| 7 |
## πΌοΈ Live Demo
|
| 8 |
|
| 9 |
-
>
|
| 10 |
|
| 11 |
-
##
|
| 12 |
|
| 13 |
- πΌ **102 Flower Classes**: Trained on the comprehensive [Flowers102 dataset](https://pytorch.org/vision/stable/generated/torchvision.datasets.Flowers102.html).
|
| 14 |
- π§ **Transfer Learning**: Built on a pre-trained ResNet model for powerful feature extraction.
|
|
@@ -31,21 +42,18 @@ The confusion matrix below shows the model's high performance, with a strong dia
|
|
| 31 |
|
| 32 |
## π οΈ How to Run Locally
|
| 33 |
|
| 34 |
-
1.
|
| 35 |
-
|
| 36 |
```bash
|
| 37 |
-
git clone [https://github.com/salihelfatih/fulla]
|
| 38 |
cd Fulla
|
| 39 |
```
|
| 40 |
|
| 41 |
-
2.
|
| 42 |
-
|
| 43 |
```bash
|
| 44 |
pip install -r requirements.txt
|
| 45 |
```
|
| 46 |
|
| 47 |
-
3.
|
| 48 |
-
|
| 49 |
```bash
|
| 50 |
python -m app.interface
|
| 51 |
```
|
|
@@ -58,28 +66,6 @@ The confusion matrix below shows the model's high performance, with a strong dia
|
|
| 58 |
- **Optimizer**: `Adam`
|
| 59 |
- **Framework**: PyTorch
|
| 60 |
|
| 61 |
-
## π Project Structure
|
| 62 |
-
|
| 63 |
-
```plaintext
|
| 64 |
-
fulla/
|
| 65 |
-
βββ fulla_core/
|
| 66 |
-
β βββ model.py
|
| 67 |
-
β βββ train.py
|
| 68 |
-
β βββ utils.py
|
| 69 |
-
β
|
| 70 |
-
βββ app/
|
| 71 |
-
β βββ interface.py
|
| 72 |
-
β
|
| 73 |
-
βββ main.ipynb
|
| 74 |
-
βββ fulla_model.pth
|
| 75 |
-
βββ README.md
|
| 76 |
-
βββ requirements.txt
|
| 77 |
-
```
|
| 78 |
-
|
| 79 |
-
## π§Ύ License
|
| 80 |
-
|
| 81 |
-
MIT License β free to use, remix, and bloom!
|
| 82 |
-
|
| 83 |
## π Credits
|
| 84 |
|
| 85 |
-
Developed by Salih Elfatih as a capstone project on deep learning and computer vision. Flowers bloom. So should code!
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
title: πΈ Fulla πΈ
|
| 4 |
+
sdk: gradio
|
| 5 |
+
emoji: π
|
| 6 |
+
colorFrom: pink
|
| 7 |
+
colorTo: purple
|
| 8 |
+
pinned: true
|
| 9 |
+
short_description: A flower classifier built with PyTorch and Gradio.
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
# πΈ Fulla πΈ
|
| 13 |
|
| 14 |
**Fulla (ΩΩΨ©)** is a deep learning project that classifies flowers from images using a ResNet-based neural network and transfer learning. Built with **PyTorch** and deployed with **Gradio**, this app blends the elegance of nature with the power of machine learning.
|
|
|
|
| 17 |
|
| 18 |
## πΌοΈ Live Demo
|
| 19 |
|
| 20 |
+
> You are looking at the live demo! For more details, check out the [GitHub repository](https://github.com/salihelfatih/fulla).
|
| 21 |
|
| 22 |
+
## β¨ Features
|
| 23 |
|
| 24 |
- πΌ **102 Flower Classes**: Trained on the comprehensive [Flowers102 dataset](https://pytorch.org/vision/stable/generated/torchvision.datasets.Flowers102.html).
|
| 25 |
- π§ **Transfer Learning**: Built on a pre-trained ResNet model for powerful feature extraction.
|
|
|
|
| 42 |
|
| 43 |
## π οΈ How to Run Locally
|
| 44 |
|
| 45 |
+
1. **Clone the repository:**
|
|
|
|
| 46 |
```bash
|
| 47 |
+
git clone [https://github.com/salihelfatih/fulla](https://github.com/salihelfatih/fulla)
|
| 48 |
cd Fulla
|
| 49 |
```
|
| 50 |
|
| 51 |
+
2. **Install dependencies:**
|
|
|
|
| 52 |
```bash
|
| 53 |
pip install -r requirements.txt
|
| 54 |
```
|
| 55 |
|
| 56 |
+
3. **Launch the app:**
|
|
|
|
| 57 |
```bash
|
| 58 |
python -m app.interface
|
| 59 |
```
|
|
|
|
| 66 |
- **Optimizer**: `Adam`
|
| 67 |
- **Framework**: PyTorch
|
| 68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
## π Credits
|
| 70 |
|
| 71 |
+
Developed by Salih Elfatih as a capstone project on deep learning and computer vision. Flowers bloom. So should code!
|