Spaces:
Runtime error
Runtime error
Harshad Bhandwaldar
commited on
Commit
•
aff24a4
1
Parent(s):
f046541
added
Browse files
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="
|
|
|
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