Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -54,12 +54,6 @@ with gr.Blocks() as demo:
|
|
54 |
)
|
55 |
with gr.Row():
|
56 |
with gr.Column():
|
57 |
-
model_radio = gr.Radio(
|
58 |
-
choices=["14B", "2B"],
|
59 |
-
value="14B",
|
60 |
-
label="Model Selection",
|
61 |
-
)
|
62 |
-
|
63 |
prompt_input = gr.Textbox(
|
64 |
label="Prompt",
|
65 |
lines=5,
|
@@ -87,6 +81,11 @@ with gr.Blocks() as demo:
|
|
87 |
label="Seed"
|
88 |
)
|
89 |
|
|
|
|
|
|
|
|
|
|
|
90 |
generate_button = gr.Button("Generate Image")
|
91 |
|
92 |
with gr.Column():
|
|
|
54 |
)
|
55 |
with gr.Row():
|
56 |
with gr.Column():
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
prompt_input = gr.Textbox(
|
58 |
label="Prompt",
|
59 |
lines=5,
|
|
|
81 |
label="Seed"
|
82 |
)
|
83 |
|
84 |
+
model_radio = gr.Radio(
|
85 |
+
choices=["14B", "2B"],
|
86 |
+
value="14B",
|
87 |
+
label="Model Selection",
|
88 |
+
)
|
89 |
generate_button = gr.Button("Generate Image")
|
90 |
|
91 |
with gr.Column():
|