Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -92,11 +92,12 @@ demo = gr.Interface(
|
|
92 |
inputs=gr.Image(),
|
93 |
outputs=gr.Label(num_top_classes=5),
|
94 |
title="Food classifier",
|
95 |
-
description=
|
96 |
examples=[
|
97 |
["sample_data/apple_pie.jpg"],
|
98 |
["sample_data/pizza.jpg"]
|
99 |
-
]
|
|
|
100 |
)
|
101 |
|
102 |
|
|
|
92 |
inputs=gr.Image(),
|
93 |
outputs=gr.Label(num_top_classes=5),
|
94 |
title="Food classifier",
|
95 |
+
description="Upload an image to classify Food Images",
|
96 |
examples=[
|
97 |
["sample_data/apple_pie.jpg"],
|
98 |
["sample_data/pizza.jpg"]
|
99 |
+
],
|
100 |
+
article=f"Available food classes:\n{table_html}"
|
101 |
)
|
102 |
|
103 |
|