Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -53,12 +53,12 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", fill_width=True, css=css) as demo:
|
|
53 |
negative_suffix = gr.CheckboxGroup(label="Use Negative Suffix", choices=get_negative_suffix(), value=["Common"])
|
54 |
|
55 |
with gr.Row(equal_height=True):
|
56 |
-
|
|
|
57 |
random_button = gr.Button("Random Model 🎲", variant="secondary", scale=2)
|
58 |
-
stop_button = gr.Button('Stop', variant="stop", interactive=False, scale=
|
59 |
-
with gr.Row(equal_height=True):
|
60 |
-
|
61 |
-
|
62 |
|
63 |
|
64 |
with gr.Column(scale=10):
|
|
|
53 |
negative_suffix = gr.CheckboxGroup(label="Use Negative Suffix", choices=get_negative_suffix(), value=["Common"])
|
54 |
|
55 |
with gr.Row(equal_height=True):
|
56 |
+
image_num = gr.Slider(label="Number of images", minimum=1, maximum=max_images, value=1, step=1, interactive=True, scale=2)
|
57 |
+
run_button = gr.Button("Generate Image", variant="primary", scale=3)
|
58 |
random_button = gr.Button("Random Model 🎲", variant="secondary", scale=2)
|
59 |
+
stop_button = gr.Button('Stop', variant="stop", interactive=False, scale=1)
|
60 |
+
#with gr.Row(equal_height=True):
|
61 |
+
|
|
|
62 |
|
63 |
|
64 |
with gr.Column(scale=10):
|