Harshad Bhandwaldar commited on
Commit
aff24a4
1 Parent(s): f046541
Files changed (2) hide show
  1. app.py +4 -1
  2. cat.jpeg +0 -0
app.py CHANGED
@@ -24,10 +24,13 @@ def segmentation(image):
24
 
25
  image_in = gr.Image()
26
  image_out = gr.components.Image()
 
 
27
 
28
  Iface = gr.Interface(
29
  fn=segmentation,
30
  inputs=image_in,
31
  outputs=image_out,
32
- title="Sementic Segmentation - MXNet",
 
33
  ).launch()
 
24
 
25
  image_in = gr.Image()
26
  image_out = gr.components.Image()
27
+ description = "MXNet Image Segmentation Model"
28
+ examples=['cat.jpeg']
29
 
30
  Iface = gr.Interface(
31
  fn=segmentation,
32
  inputs=image_in,
33
  outputs=image_out,
34
+ title="Semantic Segmentation - MXNet",
35
+ examples=examples
36
  ).launch()
cat.jpeg ADDED