bryceschultz commited on
Commit
bc23259
·
1 Parent(s): b31aa97

updating gradio syntax to reflect latest version

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.outputs.Label(num_top_classes=3),title=title,description=description,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
 
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()