Hitomiblood
commited on
Commit
•
e70b675
1
Parent(s):
82d3eec
se corrigen extensiones de las imagenes
Browse files
app.py
CHANGED
@@ -17,5 +17,5 @@ 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=['Clase 0 Test.
|
21 |
|
|
|
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=['Clase 0 Test.png','Clase 1 Test.png','Clase 2 Test.png','Clase 3 Test.png','Clase 4 Test.png']).launch(share=False)
|
21 |
|