3koozy commited on
Commit
f1427b4
·
1 Parent(s): 3c56be3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,5 +38,5 @@ def predict_segmentation(image: Image.Image):
38
  image_input = gr.components.Image(shape=(256, 256), source="upload")
39
  image_output = gr.components.Image(type="pil")
40
 
41
- iface = gr.Interface(predict_segmentation, inputs='image', outputs='image')
42
  iface.launch()
 
38
  image_input = gr.components.Image(shape=(256, 256), source="upload")
39
  image_output = gr.components.Image(type="pil")
40
 
41
+ iface = gr.Interface(predict_segmentation, 'image', 'image')
42
  iface.launch()