Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
terastudio
/
Test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
NeoPy
commited on
Dec 13, 2025
Commit
212d5f1
·
verified
·
1 Parent(s):
59ac08b
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -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()