Spaces:
Sleeping
Sleeping
Commit
·
28c3993
1
Parent(s):
533d4eb
Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,6 @@ def predict(img):
|
|
36 |
return Image.fromarray(mask.astype('uint8'))
|
37 |
|
38 |
# Creamos la interfaz y la lanzamos.
|
39 |
-
|
40 |
-
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(400, 400)), outputs=gr.outputs.Image(type="pil")).launch(share=False)
|
41 |
|
42 |
|
|
|
36 |
return Image.fromarray(mask.astype('uint8'))
|
37 |
|
38 |
# Creamos la interfaz y la lanzamos.
|
39 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(400, 400)), outputs=gr.outputs.Image(type="pil"), examples=['examples/1CA SUR_1200_800.png', 'examples/1CA SUR_4000_1200.png', 'examples/1CA SUR_4800_2000.png']).launch(share=False)
|
|
|
40 |
|
41 |
|