Spaces:
Sleeping
Sleeping
update Gradio input
Browse files
app.py
CHANGED
@@ -227,10 +227,10 @@ def predict(pil_image, model=model, category_names=cat_to_name, topk=5):
|
|
227 |
return fig
|
228 |
|
229 |
|
230 |
-
# Gradio Interface
|
231 |
gr.Interface(
|
232 |
predict,
|
233 |
-
inputs=gr.
|
234 |
outputs=gr.Plot(label="Plot"),
|
235 |
title="What kind of flower is this?",
|
236 |
).launch()
|
|
|
227 |
return fig
|
228 |
|
229 |
|
230 |
+
# Gradio Interface# Gradio Interface
|
231 |
gr.Interface(
|
232 |
predict,
|
233 |
+
inputs=gr.Image(type="pil", label="Upload a flower image"),
|
234 |
outputs=gr.Plot(label="Plot"),
|
235 |
title="What kind of flower is this?",
|
236 |
).launch()
|