Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -1,13 +1,95 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
|
4 |
-
|
5 |
-
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 4.15.0
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
11 |
---
|
|
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Flower_classifier
|
3 |
+
colorFrom: blue
|
4 |
+
colorTo: purple
|
|
|
5 |
sdk: gradio
|
|
|
|
|
|
|
6 |
license: apache-2.0
|
7 |
+
pipeline_tag: classification
|
8 |
+
metrics:
|
9 |
+
- accuracy
|
10 |
+
library_name: tensorflow keras
|
11 |
+
emoji: π
|
12 |
---
|
13 |
+
# Model Card
|
14 |
|
15 |
+
## Overview
|
16 |
+
|
17 |
+
- **Model name:** Flower Classification
|
18 |
+
- **Model description:** Classification between 5 types flower.
|
19 |
+
- **Authors:** Pallabi Biswas
|
20 |
+
- **Repository link:** https://huggingface.co/spaces/pallabi/gradio_flower_classifier/tree/main
|
21 |
+
- **License:** Apache license 2.0
|
22 |
+
- **Contact information:** [email protected]
|
23 |
+
|
24 |
+
|
25 |
+
---
|
26 |
+
|
27 |
+
|
28 |
+
# Flower Classification_app
|
29 |
+
A simple and well designed web app to classify between **5 types flower**.
|
30 |
+
|
31 |
+
|
32 |
+
### Requirements
|
33 |
+
- gradio
|
34 |
+
- tensorflow
|
35 |
+
- keras
|
36 |
+
- matplotlib
|
37 |
+
- Pillow
|
38 |
+
- numpy
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
### Table Of Contents
|
43 |
+
- [Introduction](#introduction)
|
44 |
+
- [Project Architecture](#project-architecture)
|
45 |
+
- [How To Run](#how-to-run)
|
46 |
+
- [License](#license)
|
47 |
+
- [Contributor](#contributor)
|
48 |
+
|
49 |
+
|
50 |
+
### Introduction
|
51 |
+
A simple and well designed web app to translate between **5 types flower**.
|
52 |
+
|
53 |
+
|
54 |
+
### Prject Architecture
|
55 |
+
```
|
56 |
+
βββ data
|
57 |
+
β βββ flowerClassifications.txt - text dataset.
|
58 |
+
β
|
59 |
+
β
|
60 |
+
βββ docs
|
61 |
+
β βββ flowerClassifications.pdf - paper of the related research.
|
62 |
+
β
|
63 |
+
β
|
64 |
+
βββ app.py - this module starts the app interface.
|
65 |
+
β
|
66 |
+
β
|
67 |
+
βββ LICENSE - license file of this project.
|
68 |
+
β
|
69 |
+
β
|
70 |
+
βββ README.md - readme file of this project.
|
71 |
+
β
|
72 |
+
β
|
73 |
+
βββ requirements.txt - list of required packages.
|
74 |
+
```
|
75 |
+
|
76 |
+
### How To Run
|
77 |
+
```bash
|
78 |
+
# clone project
|
79 |
+
git clone https://huggingface.co/spaces/pallabi/gradio_flower_classifier
|
80 |
+
# go inside the project directory
|
81 |
+
cd gradio_flower_classifier
|
82 |
+
# install the required packages
|
83 |
+
pip install -r requirements.txt
|
84 |
+
# run the gradio app
|
85 |
+
python app.py
|
86 |
+
```
|
87 |
+
|
88 |
+
### License
|
89 |
+
Distributed under the Apache License 2.0. See `LICENSE` for more information.
|
90 |
+
|
91 |
+
|
92 |
+
### Contributor
|
93 |
+
Pallabi Biswas - [@pallabi](https://huggingface.co/pallabi) - [email protected]
|
94 |
+
|
95 |
+
Project Link: [https://huggingface.co/spaces/pallabi/gradio_flower_classifie](https://huggingface.co/spaces/pallabi/gradio_flower_classifier)
|