crpatel commited on
Commit
1a8adab
·
verified ·
1 Parent(s): 446c2df

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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=f"Upload an image to classify Food Images\n\nAvailable food classes:\n{table_html}",
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