test2 / app.py
zergswim's picture
Update app.py
6876efa
raw
history blame contribute delete
128 Bytes
import gradio as gr
def segment(image):
return image
gr.Interface(fn=segment, inputs="image", outputs="image").launch()