HBlackwood commited on
Commit
22610b2
·
verified ·
1 Parent(s): 58ba63e

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -57,11 +57,11 @@ example_list = [["examples/" + example] for exmple in os.listdir("examples")]
57
 
58
  # Create the Gradio demo
59
  demo = gr.Interface(fn=predict, # maps inputs to outputs
60
- inputs=gr.Image(type=pil"),
61
  outputs=[gr.Label(num_top_classes=3, label="Predictions"),
62
  gr.Number(label="Prediction time (s)")],
63
  examples=example_list,
64
- title-title,
65
  description=description,
66
  article=article)
67
 
 
57
 
58
  # Create the Gradio demo
59
  demo = gr.Interface(fn=predict, # maps inputs to outputs
60
+ inputs=gr.Image(type="pil"),
61
  outputs=[gr.Label(num_top_classes=3, label="Predictions"),
62
  gr.Number(label="Prediction time (s)")],
63
  examples=example_list,
64
+ title=title,
65
  description=description,
66
  article=article)
67