Rooni commited on
Commit
ef5ea7d
·
1 Parent(s): bbe7ddd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
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", placeholder="Введите seed (целое число)")
61
- sampling_method_input = gr.Dropdown(label="Sampling Method", choices=["ddim", "plms"], placeholder="Выберите метод семплирования")
62
- cfg_input = gr.Number(label="CFG", placeholder="Введите CFG (число)")
63
  with gr.Row():
64
- width_input = gr.Number(label="Width", placeholder="Введите ширину изображения")
65
- height_input = gr.Number(label="Height", placeholder="Введите высоту изображения")
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")