Spaces:
Sleeping
Sleeping
PedroLancharesSanchez
commited on
Commit
•
b0276bc
1
Parent(s):
1557402
Update app.py
Browse files
app.py
CHANGED
@@ -24,6 +24,6 @@ def predict(img):
|
|
24 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
25 |
|
26 |
# Creamos la interfaz y la lanzamos.
|
27 |
-
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3),examples=['
|
28 |
|
29 |
|
|
|
24 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
25 |
|
26 |
# Creamos la interfaz y la lanzamos.
|
27 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3),examples=['glaciar.jpg','forest.jpg']).launch(share=False)
|
28 |
|
29 |
|