Phizzly commited on
Commit
b6f2207
·
1 Parent(s): f558127

update Gradio input

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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.inputs.Image(label="Upload a flower image", type="pil"),
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()