Update app
Browse files
app.py
CHANGED
@@ -146,5 +146,5 @@ def segment(input_img):
|
|
146 |
|
147 |
|
148 |
if __name__ == "__main__":
|
149 |
-
demo = gr.Interface(segment, gr.Image(type="filepath", height=750), outputs=gr.Image(type="filepath", height=750), title="Chest X-ray HybridGNet Segmentation")
|
150 |
demo.launch()
|
|
|
146 |
|
147 |
|
148 |
if __name__ == "__main__":
|
149 |
+
demo = gr.Interface(segment, inputs=gr.Image(type="filepath", height=750), examples=['utils/example.jpg'], outputs=gr.Image(type="filepath", height=750), title="Chest X-ray HybridGNet Segmentation")
|
150 |
demo.launch()
|