upload-test / app.py
Hannah
tweak
08f93d3
raw
history blame contribute delete
322 Bytes
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)