Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -55,14 +55,14 @@ with gr.Blocks(css=css) as demo:
|
|
55 |
with gr.Row():
|
56 |
prompt_input = gr.Textbox(label="Prompt", lines=3, placeholder="Введите описание изображения")
|
57 |
|
58 |
-
with gr.Tab("Расширенные
|
59 |
with gr.Row():
|
60 |
-
seed_input = gr.Number(label="Seed"
|
61 |
-
sampling_method_input = gr.Dropdown(label="Sampling Method", choices=["ddim", "plms"]
|
62 |
-
cfg_input = gr.Number(label="CFG"
|
63 |
with gr.Row():
|
64 |
-
width_input = gr.Number(label="Width"
|
65 |
-
height_input = gr.Number(label="Height"
|
66 |
|
67 |
with gr.Row():
|
68 |
generate_button = gr.Button("Генерация", variant="primary")
|
|
|
55 |
with gr.Row():
|
56 |
prompt_input = gr.Textbox(label="Prompt", lines=3, placeholder="Введите описание изображения")
|
57 |
|
58 |
+
with gr.Tab("Расширенные настройки"):
|
59 |
with gr.Row():
|
60 |
+
seed_input = gr.Number(label="Seed")
|
61 |
+
sampling_method_input = gr.Dropdown(label="Sampling Method", choices=["ddim", "plms"])
|
62 |
+
cfg_input = gr.Number(label="CFG")
|
63 |
with gr.Row():
|
64 |
+
width_input = gr.Number(label="Width")
|
65 |
+
height_input = gr.Number(label="Height")
|
66 |
|
67 |
with gr.Row():
|
68 |
generate_button = gr.Button("Генерация", variant="primary")
|