lucasvw commited on
Commit
a3204a3
1 Parent(s): 252e924
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -23,5 +23,4 @@ import gradio as gr
23
  image = gr.inputs.Image(shape=(512, 512))
24
  labels = gr.outputs.Label(num_top_classes=3)
25
 
26
- gr.Interface(fn=predict, inputs=image, outputs=labels)
27
- gr.launch(inline=False)
 
23
  image = gr.inputs.Image(shape=(512, 512))
24
  labels = gr.outputs.Label(num_top_classes=3)
25
 
26
+ gr.Interface(fn=predict, inputs=image, outputs=labels).launch(inline=False)