Spaces:
Sleeping
Sleeping
Add examples
Browse files- app.py +1 -1
- columbine.jpeg +0 -0
- peruvian-lily.jpg +0 -0
- petunia.jpg +0 -0
- requirements.txt +4 -0
app.py
CHANGED
|
@@ -13,7 +13,7 @@ def predict(img):
|
|
| 13 |
title = "Flower Classifier"
|
| 14 |
description = "An introductory project for using fastai to fine-tune an image classifier model, Gradio to demo it on a web interface, and HuggingFace Spaces for deployment to production. The Oxford Flowers 102 dataset, created by the University of Oxford’s Visual Geometry Group, consists of 8,189 images spanning 102 flower species, designed to challenge fine-grained image classification models. With varying lighting, backgrounds, and an uneven class distribution, it serves as a benchmark for testing model robustness and optimizing classification accuracy, making it popular for transfer learning experiments with models like VGG16, ResNet, and EfficientNet."
|
| 15 |
article="<p style='text-align: center'><a href='https://www.robots.ox.ac.uk/~vgg/data/flowers/102/index.html' target='_blank'>Blog post</a></p>"
|
| 16 |
-
examples = ['
|
| 17 |
interpretation='default'
|
| 18 |
enable_queue=True
|
| 19 |
|
|
|
|
| 13 |
title = "Flower Classifier"
|
| 14 |
description = "An introductory project for using fastai to fine-tune an image classifier model, Gradio to demo it on a web interface, and HuggingFace Spaces for deployment to production. The Oxford Flowers 102 dataset, created by the University of Oxford’s Visual Geometry Group, consists of 8,189 images spanning 102 flower species, designed to challenge fine-grained image classification models. With varying lighting, backgrounds, and an uneven class distribution, it serves as a benchmark for testing model robustness and optimizing classification accuracy, making it popular for transfer learning experiments with models like VGG16, ResNet, and EfficientNet."
|
| 15 |
article="<p style='text-align: center'><a href='https://www.robots.ox.ac.uk/~vgg/data/flowers/102/index.html' target='_blank'>Blog post</a></p>"
|
| 16 |
+
examples = ['petunia.jpg', 'peruvian-lily.jpg', 'columbine.jpg']
|
| 17 |
interpretation='default'
|
| 18 |
enable_queue=True
|
| 19 |
|
columbine.jpeg
ADDED
|
peruvian-lily.jpg
ADDED
|
petunia.jpg
ADDED
|
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastai
|
| 2 |
+
gradio
|
| 3 |
+
scikit-image
|
| 4 |
+
dill
|