Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -257,6 +257,8 @@ def fonc_add_param(lp,txt_input,neg_input,width,height,steps,cfg,seed):
|
|
257 |
def fonc_del_param(lp,txt_input,neg_input,width,height,steps,cfg,seed):
|
258 |
if [txt_input,neg_input,width,height,steps,cfg,seed] in lp :
|
259 |
lp.remove([txt_input,neg_input,width,height,steps,cfg,seed])
|
|
|
|
|
260 |
return gr.Dataset(samples=lp) , gr.Dropdown(choices=[["a",lp]], value=lp)
|
261 |
|
262 |
def make_me():
|
@@ -278,8 +280,8 @@ def make_me():
|
|
278 |
steps = gr.Slider(label="Number of inference steps", info="If 0, the default value is used.", maximum=100, step=1, value=0, interactive = True)
|
279 |
cfg = gr.Slider(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=0, interactive = True)
|
280 |
seed = gr.Slider(label="Seed", info="Randomize Seed if -1.", minimum=-1, maximum=MAX_SEED, step=1, value=-1, interactive = True)
|
281 |
-
|
282 |
-
list_param=gr.Dropdown(choices=[["a",
|
283 |
|
284 |
add_param=gr.Button("add to the list")
|
285 |
del_param=gr.Button("delete to the list")
|
|
|
257 |
def fonc_del_param(lp,txt_input,neg_input,width,height,steps,cfg,seed):
|
258 |
if [txt_input,neg_input,width,height,steps,cfg,seed] in lp :
|
259 |
lp.remove([txt_input,neg_input,width,height,steps,cfg,seed])
|
260 |
+
if lp == []:
|
261 |
+
lp.append(["","",0,0,0,0,-1])
|
262 |
return gr.Dataset(samples=lp) , gr.Dropdown(choices=[["a",lp]], value=lp)
|
263 |
|
264 |
def make_me():
|
|
|
280 |
steps = gr.Slider(label="Number of inference steps", info="If 0, the default value is used.", maximum=100, step=1, value=0, interactive = True)
|
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")
|