Spaces:
Runtime error
Runtime error
Commit ·
bc23259
1
Parent(s): b31aa97
updating gradio syntax to reflect latest version
Browse files
app.py
CHANGED
|
@@ -15,4 +15,4 @@ examples = ['fundus_photo.jpeg']
|
|
| 15 |
interpretation='default'
|
| 16 |
enable_queue=True
|
| 17 |
|
| 18 |
-
gr.Interface(fn=predict,inputs=gr.Image(),outputs=gr.
|
|
|
|
| 15 |
interpretation='default'
|
| 16 |
enable_queue=True
|
| 17 |
|
| 18 |
+
gr.Interface(fn=predict,inputs=gr.Image(),outputs=gr.Label(num_top_classes=3),title=title,description=description,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
|