Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -250,7 +250,7 @@ list_ratios=[["None",[None,None]],
|
|
250 |
["1:4 (512 x 2048)",[512,2048]]]
|
251 |
|
252 |
def fonc_add_param(lp,txt_input,neg_input,width,height,steps,cfg,seed):
|
253 |
-
if lp == ["","",0,0,0,0,-1]:
|
254 |
lp.remove(["","",0,0,0,0,-1])
|
255 |
lp.append([txt_input,neg_input,width,height,steps,cfg,seed])
|
256 |
return gr.Dataset(samples=lp) , gr.Dropdown(choices=[["a",lp]], value=lp)
|
@@ -281,7 +281,7 @@ def make_me():
|
|
281 |
cfg = gr.Slider(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=0, interactive = True)
|
282 |
seed = gr.Slider(label="Seed", info="Randomize Seed if -1.", minimum=-1, maximum=MAX_SEED, step=1, value=-1, interactive = True)
|
283 |
|
284 |
-
list_param=gr.Dropdown(choices=[["a",["","",0,0,0,0,-1]]], value=["","",0,0,0,0,-1], visible=False)
|
285 |
|
286 |
add_param=gr.Button("add to the list")
|
287 |
del_param=gr.Button("delete to the list")
|
@@ -291,7 +291,7 @@ def make_me():
|
|
291 |
|
292 |
print(list_param.value)
|
293 |
disp_param = gr.Examples(
|
294 |
-
examples=
|
295 |
inputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
296 |
outputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
297 |
)
|
|
|
250 |
["1:4 (512 x 2048)",[512,2048]]]
|
251 |
|
252 |
def fonc_add_param(lp,txt_input,neg_input,width,height,steps,cfg,seed):
|
253 |
+
if lp == [["","",0,0,0,0,-1]]:
|
254 |
lp.remove(["","",0,0,0,0,-1])
|
255 |
lp.append([txt_input,neg_input,width,height,steps,cfg,seed])
|
256 |
return gr.Dataset(samples=lp) , gr.Dropdown(choices=[["a",lp]], value=lp)
|
|
|
281 |
cfg = gr.Slider(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=0, interactive = True)
|
282 |
seed = gr.Slider(label="Seed", info="Randomize Seed if -1.", minimum=-1, maximum=MAX_SEED, step=1, value=-1, interactive = True)
|
283 |
|
284 |
+
list_param=gr.Dropdown(choices=[["a",[["","",0,0,0,0,-1]]]], value=[["","",0,0,0,0,-1]], visible=False)
|
285 |
|
286 |
add_param=gr.Button("add to the list")
|
287 |
del_param=gr.Button("delete to the list")
|
|
|
291 |
|
292 |
print(list_param.value)
|
293 |
disp_param = gr.Examples(
|
294 |
+
examples=list_param.value,
|
295 |
inputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
296 |
outputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
297 |
)
|