osbm's picture
Update gradio_app.py
6cdd153
raw
history blame
144 Bytes
import gradio as gr
def monai_inference(input):
pass
demo = gr.Interface(fn=monai_inference, inputs="file", outputs="file")
demo.launch()