isboudja commited on
Commit
abbef5e
·
verified ·
1 Parent(s): 137844c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -17,4 +17,6 @@ def predict(img):
17
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
18
 
19
  # Creamos la interfaz y la lanzamos.
20
- gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3),examples=['happy.jpg','shock.png']).launch(share=False)
 
 
 
17
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
18
 
19
  # Creamos la interfaz y la lanzamos.
20
+ input_component = gr.components.Image(shape=(128, 128))
21
+ output_component = gr.components.Label(num_top_classes=3)
22
+ gr.Interface(fn=predict, inputs=input_component, outputs=output_component,examples=['happy.jpg','shock.png']).launch(share=False)