Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|