Update app.py
Browse files
app.py
CHANGED
@@ -40,12 +40,12 @@ def gen_fn(model_str, prompt):
|
|
40 |
if model_str == 'NA':
|
41 |
return None
|
42 |
noise = str(randint(0, 9999))
|
43 |
-
return models_load[model_str](f'{prompt}
|
44 |
|
45 |
def make_me():
|
46 |
with gr.Row():
|
47 |
-
txt_input = gr.Textbox(label='Your prompt:', lines=3, width=800, max_height=
|
48 |
-
neg_txt_input = gr.Textbox(label='Negative prompt:', lines=3, width=800, max_height=
|
49 |
|
50 |
gen_button = gr.Button('Generate images', width=30, height=30)
|
51 |
stop_button = gr.Button('Stop', variant='secondary', interactive=False, width=30, height=30)
|
@@ -60,7 +60,7 @@ def make_me():
|
|
60 |
output = [gr.Image(label=m, min_width=250, height=250) for m in default_models]
|
61 |
current_models = [gr.Textbox(m, visible=False) for m in default_models]
|
62 |
for m, o in zip(current_models, output):
|
63 |
-
gen_event = gen_button.click(gen_fn, [m,
|
64 |
stop_button.click(lambda s: gr.update(interactive=False), None, stop_button, cancels=[gen_event])
|
65 |
with gr.Accordion('Model selection'):
|
66 |
model_choice = gr.CheckboxGroup(models, label=f' {num_models} different models selected', value=default_models, multiselect=True, max_choices=num_models, interactive=True, filterable=False)
|
|
|
40 |
if model_str == 'NA':
|
41 |
return None
|
42 |
noise = str(randint(0, 9999))
|
43 |
+
return models_load[model_str](f'{prompt} {noise} {neg_prompt}')
|
44 |
|
45 |
def make_me():
|
46 |
with gr.Row():
|
47 |
+
txt_input = gr.Textbox(label='Your prompt:', lines=3, width=800, max_height=30)
|
48 |
+
neg_txt_input = gr.Textbox(label='Negative prompt:', lines=3, width=800, max_height=30)
|
49 |
|
50 |
gen_button = gr.Button('Generate images', width=30, height=30)
|
51 |
stop_button = gr.Button('Stop', variant='secondary', interactive=False, width=30, height=30)
|
|
|
60 |
output = [gr.Image(label=m, min_width=250, height=250) for m in default_models]
|
61 |
current_models = [gr.Textbox(m, visible=False) for m in default_models]
|
62 |
for m, o in zip(current_models, output):
|
63 |
+
gen_event = gen_button.click(gen_fn, [m, neg_txt_input], o)
|
64 |
stop_button.click(lambda s: gr.update(interactive=False), None, stop_button, cancels=[gen_event])
|
65 |
with gr.Accordion('Model selection'):
|
66 |
model_choice = gr.CheckboxGroup(models, label=f' {num_models} different models selected', value=default_models, multiselect=True, max_choices=num_models, interactive=True, filterable=False)
|