Spaces:
Sleeping
Sleeping
Commit
Β·
888843a
1
Parent(s):
ded73a2
Update app.py
Browse files
app.py
CHANGED
@@ -49,7 +49,8 @@ def predict(img):
|
|
49 |
|
50 |
# Create title, description strings
|
51 |
title = "FoodVision ππ₯©π£"
|
52 |
-
description = "An EfficientNetB2 fine tuning computer vision model to classify 101 different food
|
|
|
53 |
|
54 |
# Create the Gradio demo
|
55 |
demo = gr.Interface(fn=predict, # mapping function from input to output
|
@@ -60,6 +61,6 @@ demo = gr.Interface(fn=predict, # mapping function from input to output
|
|
60 |
examples=example_list,
|
61 |
title=title,
|
62 |
description=description)
|
63 |
-
# article=article)
|
64 |
|
65 |
demo.launch(debug=False) # print errors locally?
|
|
|
49 |
|
50 |
# Create title, description strings
|
51 |
title = "FoodVision ππ₯©π£"
|
52 |
+
description = "An EfficientNetB2 fine tuning computer vision model to classify 101 different types of foods. For food list. [Click here](https://github.com/Rajatsingh24/FoodVision/raw/main/class_names.txt)."
|
53 |
+
|
54 |
|
55 |
# Create the Gradio demo
|
56 |
demo = gr.Interface(fn=predict, # mapping function from input to output
|
|
|
61 |
examples=example_list,
|
62 |
title=title,
|
63 |
description=description)
|
64 |
+
# article=article)
|
65 |
|
66 |
demo.launch(debug=False) # print errors locally?
|