cesaenv commited on
Commit
3e0b15e
·
verified ·
1 Parent(s): 7b737fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,6 +16,6 @@ def predict(img):
16
  pred,pred_idx,probs = learner.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,examples=['Ala_Idris (3).png','Dimnit (9).png']).launch(share=False)
21
 
 
16
  pred,pred_idx,probs = learner.predict(img)
17
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
18
 
19
+ # Creamos la interfaz y la lanzamos. examples=['Ala_Idris (3).png','Dimnit (9).png']
20
+ gr.Interface(fn=predict, inputs="image", outputs="label",examples=['Ala_Idris (3).png','Dimnit (9).png']).launch(share=False)
21