Update README.md
Browse files
README.md
CHANGED
|
@@ -6,4 +6,61 @@ metrics:
|
|
| 6 |
- accuracy
|
| 7 |
pipeline_tag: image-classification
|
| 8 |
library_name: keras
|
| 9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- accuracy
|
| 7 |
pipeline_tag: image-classification
|
| 8 |
library_name: keras
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Name
|
| 12 |
+
|
| 13 |
+
panda_cat_dog_classification
|
| 14 |
+
|
| 15 |
+
### Model Description
|
| 16 |
+
This model classifies animals among pandas, cats and dogs. It was trained using inceptionV3 model.
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
- **Developed by:** Neelima Monjusha Preeti
|
| 20 |
+
- **Model type:** inceptionV3
|
| 21 |
+
- **Language(s):** Python
|
| 22 |
+
- **License:** MIT
|
| 23 |
+
- **Contact:** monjusha.2017@juniv.edu
|
| 24 |
+
|
| 25 |
+
### Project Structure
|
| 26 |
+
```bash
|
| 27 |
+
|
|
| 28 |
+
|---app_data
|
| 29 |
+
| |---images(used for examples)
|
| 30 |
+
|
|
| 31 |
+
|---models
|
| 32 |
+
| |model_inception.h5
|
| 33 |
+
|---train(image dataset for training)
|
| 34 |
+
|
|
| 35 |
+
|---test(image dataset for testing)
|
| 36 |
+
|
|
| 37 |
+
|---Readme.md(about project)
|
| 38 |
+
|
|
| 39 |
+
|---app.py(the interface for project)
|
| 40 |
+
|
|
| 41 |
+
|---requirements.txt(libraries needed for project)
|
| 42 |
+
|
|
| 43 |
+
|---main.ipynb(project code)
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
### How to Run
|
| 47 |
+
|
| 48 |
+
```bash
|
| 49 |
+
|
| 50 |
+
git clone https://huggingface.co/spaces/neelimapreeti297/panda_cat_dog_classification/tree/main
|
| 51 |
+
|
| 52 |
+
cd panda_cat_dog_classification
|
| 53 |
+
|
| 54 |
+
pip install -r requirements.txt
|
| 55 |
+
|
| 56 |
+
python app.py
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
### License
|
| 61 |
+
This project is licensed under the MIT License.
|
| 62 |
+
|
| 63 |
+
### Contributor
|
| 64 |
+
Neelima Monjusha Preeti - monjusha.stu2017@juniv.edu
|
| 65 |
+
|
| 66 |
+
link: https://huggingface.co/spaces/neelimapreeti297/panda_cat_dog_classification
|