Spaces:
Running
on
Zero
Running
on
Zero
prithivMLmods
commited on
Commit
•
8d41175
1
Parent(s):
85f0aba
Update app.py
Browse files
app.py
CHANGED
@@ -140,12 +140,12 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
140 |
run_button = gr.Button("Run", scale=0)
|
141 |
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
142 |
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
|
150 |
with gr.Accordion("Advanced options", open=False, visible=False):
|
151 |
num_images = gr.Slider(
|
|
|
140 |
run_button = gr.Button("Run", scale=0)
|
141 |
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
142 |
|
143 |
+
with gr.Row():
|
144 |
+
model_choice = gr.Dropdown(
|
145 |
+
label="Model",
|
146 |
+
choices=list(MODEL_OPTIONS.keys()),
|
147 |
+
value="RealVisXL_V4.0_Lightning"
|
148 |
+
)
|
149 |
|
150 |
with gr.Accordion("Advanced options", open=False, visible=False):
|
151 |
num_images = gr.Slider(
|