NeoPy commited on
Commit
212d5f1
·
verified ·
1 Parent(s): 59ac08b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ with gr.Row():
5
+ model_pth = gr.Dropdown()
6
+ with gr.Row():
7
+ refresh = gr.Button("refresh")
8
+ model_index = gr.Dropdown()
9
+
10
+
11
+ demo.launch()