Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -231,11 +231,10 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
| 231 |
repetition_penalty = gr.Slider(label="Repetition penalty", minimum=1.0, maximum=2.0, step=0.05, value=1.2)
|
| 232 |
with gr.Column():
|
| 233 |
output = gr.Textbox(label="Output", interactive=False)
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
value="Cosmos-Reason1-7B")
|
| 239 |
|
| 240 |
image_submit.click(
|
| 241 |
fn=generate_image,
|
|
|
|
| 231 |
repetition_penalty = gr.Slider(label="Repetition penalty", minimum=1.0, maximum=2.0, step=0.05, value=1.2)
|
| 232 |
with gr.Column():
|
| 233 |
output = gr.Textbox(label="Output", interactive=False)
|
| 234 |
+
model_choice = gr.Dropdown(
|
| 235 |
+
choices=["Cosmos-Reason1-7B", "MiMo-VL-7B-RL"],
|
| 236 |
+
label="Select Model",
|
| 237 |
+
value="Cosmos-Reason1-7B")
|
|
|
|
| 238 |
|
| 239 |
image_submit.click(
|
| 240 |
fn=generate_image,
|