lucasvw commited on
Commit
7036bea
1 Parent(s): a3204a3
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,6 +21,6 @@ import gradio as gr
21
 
22
  # %% ../01.ipynb 8
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)
 
21
 
22
  # %% ../01.ipynb 8
23
  image = gr.inputs.Image(shape=(512, 512))
24
+ outputs = gr.outputs.Label(num_top_classes=3)
25
 
26
+ gr.Interface(fn=predict, inputs=image, outputs=outputs).launch(inline=False)