masdar's picture
create app.py
b29d3e5
raw
history blame
168 Bytes
import gradio as gr
def segment(image):
pass # Implement your image segmentation model here...
gr.Interface(fn=segment, inputs="image", outputs="image").launch()