Spaces:
Runtime error
Runtime error
Update gradio_app.py
Browse files- 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 |
+
|