Spaces:
Sleeping
Sleeping
import gradio as gr | |
with gr.Blocks() as demo: | |
with gr.Row(): | |
image_input = gr.File(file_count="multiple", label="Input Image") | |
with gr.Row(): | |
image_output = gr.Image(label="Mask") | |
submit_button = gr.Button("Run Model", visible=True) | |
if __name__ == "__main__": | |
demo.launch(show_api=False) |