osbm commited on
Commit
1db037e
·
1 Parent(s): bb96fc5

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +7 -0
gradio_app.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def monai_inference(input):
4
+ pass
5
+
6
+ demo = gr.Interface(fn=monai_inference, inputs="file", outputs="file")
7
+