mmasdar commited on
Commit
976cd28
1 Parent(s): 5804c44
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def segment(image):
4
+ pass # Implement your image segmentation model here...
5
+
6
+ gr.Interface(fn=segment, inputs="image", outputs="image").launch()