osbm's picture
Update gradio_app.py
c4ee74b
raw
history blame
241 Bytes
import gradio as gr
def monai_inference(input):
pass
demo = gr.Interface(
fn=monai_inference,
inputs=gr.File(file_count="single", file_types=[".nii.gz", ".zip"], label="can i see this text"),
outputs="file"
)
demo.launch()