Rubén Escobedo commited on
Commit ·
c11982b
1
Parent(s): 61ad881
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,4 +16,4 @@ def predict(img):
|
|
| 16 |
return pred_dict['img']
|
| 17 |
|
| 18 |
# Creamos la interfaz y la lanzamos.
|
| 19 |
-
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Image(
|
|
|
|
| 16 |
return pred_dict['img']
|
| 17 |
|
| 18 |
# Creamos la interfaz y la lanzamos.
|
| 19 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Image(),examples=['kangarooc.jpg']).launch(share=False)
|