Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Food-101 Image Classifier
|
| 2 |
|
| 3 |
This is an image classification model capable of identifying 101 different food categories from the Food-101 dataset. The model leverages transfer learning using a pre-trained EfficientNetB0 as its base.
|
|
@@ -104,6 +114,10 @@ def preprocess_image(image_path):
|
|
| 104 |
|
| 105 |
```
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
## License
|
| 108 |
|
| 109 |
-
[MIT]
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
datasets:
|
| 4 |
+
- ethz/food101
|
| 5 |
+
metrics:
|
| 6 |
+
- accuracy
|
| 7 |
+
base_model:
|
| 8 |
+
- google/efficientnet-b0
|
| 9 |
+
library_name: keras
|
| 10 |
+
---
|
| 11 |
# Food-101 Image Classifier
|
| 12 |
|
| 13 |
This is an image classification model capable of identifying 101 different food categories from the Food-101 dataset. The model leverages transfer learning using a pre-trained EfficientNetB0 as its base.
|
|
|
|
| 114 |
|
| 115 |
```
|
| 116 |
|
| 117 |
+
## Demo
|
| 118 |
+
|
| 119 |
+
You can try a demo in [here](https://huggingface.co/spaces/sirunchained/Food-101-image-classifier-gradio)
|
| 120 |
+
|
| 121 |
## License
|
| 122 |
|
| 123 |
+
[MIT]
|