Update app.py
Browse files
app.py
CHANGED
@@ -81,8 +81,8 @@ def segment(input):
|
|
81 |
|
82 |
import gradio as gr
|
83 |
|
84 |
-
i = gr.inputs.Image(shape=(112, 112))
|
85 |
-
o = gr.outputs.Image()
|
86 |
|
87 |
examples = [["img1.jpg"], ["img2.jpg"]]
|
88 |
title = None #"Left Ventricle Segmentation"
|
|
|
81 |
|
82 |
import gradio as gr
|
83 |
|
84 |
+
i = gr.inputs.Image(shape=(112, 112), label="Echocardiogram")
|
85 |
+
o = gr.outputs.Image(label="Segmentation mask")
|
86 |
|
87 |
examples = [["img1.jpg"], ["img2.jpg"]]
|
88 |
title = None #"Left Ventricle Segmentation"
|