remotewith commited on
Commit
9064415
·
verified ·
1 Parent(s): a11e6c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ demo = gr.Interface(fn=predict, # mapping function from input to output
67
  outputs=[gr.Label(num_top_classes=2, label="Predictions"), # what are the outputs?
68
  gr.Number(label="Prediction time (s)")], # our fn has two outputs, therefore we have two outputs
69
  # Create examples list from "examples/" directory
70
- examples=example_list,
71
  title=title,
72
  description=description)
73
 
 
67
  outputs=[gr.Label(num_top_classes=2, label="Predictions"), # what are the outputs?
68
  gr.Number(label="Prediction time (s)")], # our fn has two outputs, therefore we have two outputs
69
  # Create examples list from "examples/" directory
70
+ examples=[["1.jpg"],["4.jpg"],["75.jpg"]],
71
  title=title,
72
  description=description)
73