Spaces:
Running
Running
Update app.py
Browse files
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=
|
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 |
|