Spaces:
Runtime error
Runtime error
Commit
·
0094859
1
Parent(s):
47c91d0
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ def classify(img):
|
|
18 |
return confidences
|
19 |
|
20 |
gr.Interface(fn=classify,
|
21 |
-
|
22 |
inputs=gr.Image(shape=(180, 180)),
|
23 |
outputs=gr.Label(num_top_classes=5),examples=["Dandelion.jpg", "rose.jpeg","sunflower.jpg", "tulips.jpeg"]).launch(debug=True)
|
24 |
|
|
|
18 |
return confidences
|
19 |
|
20 |
gr.Interface(fn=classify,
|
21 |
+
gr.HTML("<h1>Flower Classification App [Sunflower, Rose, Daisy, Dandelion, Tulips]</h1>"),
|
22 |
inputs=gr.Image(shape=(180, 180)),
|
23 |
outputs=gr.Label(num_top_classes=5),examples=["Dandelion.jpg", "rose.jpeg","sunflower.jpg", "tulips.jpeg"]).launch(debug=True)
|
24 |
|