vumichien commited on
Commit
a8a0a94
1 Parent(s): 36d76bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,9 +52,9 @@ def segmentation(input_image):
52
  return (overlay, prediction_colormap)
53
 
54
  i = gr.inputs.Image()
55
- o = [gr.outputs.Image(), gr.outputs.Image()]
56
 
57
- examples = [["example_image_2.jpeg"], ["example_image_3.jpeg"]]
58
  title = "Human Part Segmentation"
59
  description = "Upload an image or select from examples to segment out different human parts."
60
 
 
52
  return (overlay, prediction_colormap)
53
 
54
  i = gr.inputs.Image()
55
+ o = [gr.Image(), gr.Image()]
56
 
57
+ examples = ["example_image_1.jpg", "example_image_2.jpeg", "example_image_3.jpeg"]
58
  title = "Human Part Segmentation"
59
  description = "Upload an image or select from examples to segment out different human parts."
60