chris999 commited on
Commit
26e1d80
·
1 Parent(s): 2cb8253

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1 +1,5 @@
1
- hello world
 
 
 
 
 
1
+ import gradio as gr
2
+ def segment(image):
3
+ pass # Implement your image segmentation model here...
4
+
5
+ gr.Interface(fn=segment, inputs="image", outputs="image").launch()