Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -60,20 +60,20 @@ tags_plus_models_to_list=[]
|
|
60 |
list_tags=[]
|
61 |
for tag_plus_m in tags_plus_models:
|
62 |
list_tags.append(tag_plus_m[0]+f" ({tag_plus_m[1]})")
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
|
72 |
def test_pass_aff(test):
|
73 |
if test==os.getenv('p'):
|
74 |
-
return gr.
|
75 |
else:
|
76 |
-
return gr.
|
77 |
|
78 |
|
79 |
# https://huggingface.co/docs/api-inference/detailed_parameters
|
@@ -440,138 +440,162 @@ def change_text_model_actu_gal(list_models,index):
|
|
440 |
def fonc_add_to_text(text,list_models,index):
|
441 |
return gr.Textbox(text+f"\"{list_models[index]}\",\n")
|
442 |
|
|
|
|
|
|
|
|
|
443 |
def make_me():
|
444 |
-
with gr.
|
445 |
-
|
446 |
-
with gr.Group():
|
447 |
with gr.Row():
|
448 |
with gr.Column(scale=4):
|
449 |
-
|
450 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
with gr.Column(scale=4):
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
with gr.Row():
|
461 |
-
steps = gr.Slider(label="Number of inference steps", info="If 0, the default value is used.", maximum=100, step=1, value=0, interactive = True)
|
462 |
-
cfg = gr.Slider(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=0, interactive = True)
|
463 |
-
seed = gr.Slider(label="Seed", info="Randomize Seed if -1.", minimum=-1, maximum=MAX_SEED, step=1, value=-1, interactive = True)
|
464 |
-
|
465 |
-
add_param=gr.Button("Add to the list")
|
466 |
-
del_param=gr.Button("Delete to the list")
|
467 |
-
|
468 |
-
#gen_button = gr.Button('Generate images', scale=3)
|
469 |
-
#stop_button = gr.Button('Stop', variant='secondary', interactive=False, scale=1)
|
470 |
-
#gen_button.click(lambda: gr.update(interactive=True), None, stop_button)
|
471 |
-
|
472 |
-
list_param=gr.Dropdown(choices=[["a",[["","",0,0,0,0,-1]]]], value=[["","",0,0,0,0,-1]], visible=False)
|
473 |
-
disp_param = gr.Examples(
|
474 |
-
label="list of prompt",
|
475 |
-
examples=list_param.value,
|
476 |
-
inputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
477 |
-
outputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
478 |
-
)
|
479 |
-
add_param.click(fonc_add_param,[list_param,txt_input,neg_input,width,height,steps,cfg,seed],[disp_param.dataset,list_param])
|
480 |
-
add_param.click(set_session,[id_session],[id_session])
|
481 |
-
del_param.click(fonc_del_param,[list_param,txt_input,neg_input,width,height,steps,cfg,seed],[disp_param.dataset,list_param])
|
482 |
-
|
483 |
-
with gr.Row():
|
484 |
-
list_models_to_gen=gr.Dropdown(choices=[["",[]]], value=[], visible=False)
|
485 |
-
disp_info=gr.Textbox(label="Info")
|
486 |
-
with gr.Column():
|
487 |
with gr.Row():
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
|
497 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
with gr.Row():
|
499 |
-
|
|
|
500 |
with gr.Column():
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
text_actu=gr.Textbox("",label="in progress",interactive=False,lines=6)
|
525 |
-
update_actu=gr.Number(0,visible=False)
|
526 |
-
update_actu.change(fonc_update_actu,[text_actu,id_session],[text_actu])
|
527 |
-
with gr.Row():
|
528 |
-
outputs=[]
|
529 |
-
id_modules=[]
|
530 |
-
states=[]
|
531 |
-
for i in range(nb_req_simult):
|
532 |
-
#outputs.append(gr.Image(None,interactive=False,render=False))
|
533 |
-
#id_modules.append(gr.Number(i,interactive=False,render=False))
|
534 |
-
outputs.append(gr.Image(None,interactive=False,visible=False))
|
535 |
-
id_modules.append(gr.Number(i,interactive=False,visible=False))
|
536 |
-
states.append(gr.Textbox("1",interactive=False,visible=False))
|
537 |
-
for o,i,s in zip(outputs,id_modules,states):
|
538 |
-
#o.change(fonc_start,[id_session,i],[o])
|
539 |
-
#o.change(test_change,[],[])
|
540 |
-
s.change(fonc_start,[id_session,i,s,cont],[o,s,update_actu])
|
541 |
-
#button_start.click(lambda : gr.Image(None),[],[o])
|
542 |
-
gen_event = gr.on(triggers=[button_start.click], fn=fonc_init,inputs=[s], outputs=[s])
|
543 |
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
|
576 |
|
577 |
|
|
|
60 |
list_tags=[]
|
61 |
for tag_plus_m in tags_plus_models:
|
62 |
list_tags.append(tag_plus_m[0]+f" ({tag_plus_m[1]})")
|
63 |
+
|
64 |
+
models_publ=[]
|
65 |
+
if len(models)>10:
|
66 |
+
nb_publ=10
|
67 |
+
else:
|
68 |
+
nb_publ=len(models)
|
69 |
+
for i in range(nb_publ):
|
70 |
+
models_publ.append(models[i])
|
71 |
|
72 |
def test_pass_aff(test):
|
73 |
if test==os.getenv('p'):
|
74 |
+
return gr.Tab(visible=True)
|
75 |
else:
|
76 |
+
return gr.Tab(visible=False)
|
77 |
|
78 |
|
79 |
# https://huggingface.co/docs/api-inference/detailed_parameters
|
|
|
440 |
def fonc_add_to_text(text,list_models,index):
|
441 |
return gr.Textbox(text+f"\"{list_models[index]}\",\n")
|
442 |
|
443 |
+
|
444 |
+
def load_model_publ(choice_model_publ):
|
445 |
+
return gr.Image(None,label=choice_model_publ,interactive=False),gr.Textbox(choice_model_publ,visible=False,show_label=False)
|
446 |
+
|
447 |
def make_me():
|
448 |
+
with gr.Tab(" "):
|
449 |
+
with gr.Column():
|
|
|
450 |
with gr.Row():
|
451 |
with gr.Column(scale=4):
|
452 |
+
prompt_publ=gr.Textbox(label='Your prompt:', lines=4, interactive = True)
|
453 |
+
choice_model_publ=gr.Dropdown(label="List of Models", choices=list(models_publ),value=models_publ[0])
|
454 |
+
gen_button_publ = gr.Button('Generate images',scale=2)
|
455 |
+
image_publ=gr.Image(None,label=models_publ[0],interactive=False)
|
456 |
+
current_models_publ=gr.Textbox(models_publ[0],visible=False,show_label=False)
|
457 |
+
choice_model_publ.change(load_model_publ,[choice_model_publ],[image_publ,current_models_publ])
|
458 |
+
gen_event_publ = gr.on(triggers=[gen_button_publ.click, prompt_publ.submit], fn=gen_fn,
|
459 |
+
inputs=[choice_model_publ, prompt_publ], outputs=[image_publ])
|
460 |
+
|
461 |
+
with gr.Row():
|
462 |
with gr.Column(scale=4):
|
463 |
+
test_pass=gr.Textbox(show_label=False,lines=1, interactive = True)
|
464 |
+
button_test_pass=gr.Button(" ",scale=1)
|
465 |
+
|
466 |
+
with gr.Tab(" Sort ",visible=False) as tab_p:
|
467 |
+
button_test_pass.click(test_pass_aff,[test_pass],[tab_p])
|
468 |
+
with gr.Column():
|
469 |
+
id_session=gr.Number(visible=False,value=0)
|
470 |
+
with gr.Group():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
with gr.Row():
|
472 |
+
with gr.Column(scale=4):
|
473 |
+
txt_input = gr.Textbox(label='Your prompt:', lines=4, interactive = True)
|
474 |
+
neg_input = gr.Textbox(label='Negative prompt:', lines=4, interactive = True)
|
475 |
+
with gr.Column(scale=4):
|
476 |
+
with gr.Row():
|
477 |
+
width = gr.Slider(label="Width", info="If 0, the default value is used.", maximum=2024, step=32, value=0, interactive = True)
|
478 |
+
height = gr.Slider(label="Height", info="If 0, the default value is used.", maximum=2024, step=32, value=0, interactive = True)
|
479 |
+
with gr.Row():
|
480 |
+
choice_ratio = gr.Dropdown(label="Ratio Width/Height",
|
481 |
+
info="OverWrite Width and Height (W*H<1024*1024)",
|
482 |
+
show_label=True, choices=list(list_ratios) , interactive = True, value=list_ratios[0][1])
|
483 |
+
choice_ratio.change(ratio_chosen,[choice_ratio,width,height],[width,height])
|
484 |
+
with gr.Row():
|
485 |
+
steps = gr.Slider(label="Number of inference steps", info="If 0, the default value is used.", maximum=100, step=1, value=0, interactive = True)
|
486 |
+
cfg = gr.Slider(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=0, interactive = True)
|
487 |
+
seed = gr.Slider(label="Seed", info="Randomize Seed if -1.", minimum=-1, maximum=MAX_SEED, step=1, value=-1, interactive = True)
|
488 |
+
|
489 |
+
add_param=gr.Button("Add to the list")
|
490 |
+
del_param=gr.Button("Delete to the list")
|
491 |
+
|
492 |
+
#gen_button = gr.Button('Generate images', scale=3)
|
493 |
+
#stop_button = gr.Button('Stop', variant='secondary', interactive=False, scale=1)
|
494 |
+
#gen_button.click(lambda: gr.update(interactive=True), None, stop_button)
|
495 |
|
496 |
+
list_param=gr.Dropdown(choices=[["a",[["","",0,0,0,0,-1]]]], value=[["","",0,0,0,0,-1]], visible=False)
|
497 |
+
disp_param = gr.Examples(
|
498 |
+
label="list of prompt",
|
499 |
+
examples=list_param.value,
|
500 |
+
inputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
501 |
+
outputs=[txt_input,neg_input,width,height,steps,cfg,seed],
|
502 |
+
)
|
503 |
+
add_param.click(fonc_add_param,[list_param,txt_input,neg_input,width,height,steps,cfg,seed],[disp_param.dataset,list_param])
|
504 |
+
add_param.click(set_session,[id_session],[id_session])
|
505 |
+
del_param.click(fonc_del_param,[list_param,txt_input,neg_input,width,height,steps,cfg,seed],[disp_param.dataset,list_param])
|
506 |
+
|
507 |
with gr.Row():
|
508 |
+
list_models_to_gen=gr.Dropdown(choices=[["",[]]], value=[], visible=False)
|
509 |
+
disp_info=gr.Textbox(label="Info")
|
510 |
with gr.Column():
|
511 |
+
with gr.Row():
|
512 |
+
nb_images_by_prompt=gr.Number(2,label="Number of images by prompt:",interactive=True)
|
513 |
+
nb_of_models_to_gen=gr.Number(10,label="Number of Models:",interactive=True)
|
514 |
+
index_tag=gr.Dropdown(label="Tag",choices=list(list_tags),type="index")
|
515 |
+
index_first_model=gr.Dropdown(label="First model",choices=list([]), type="index")
|
516 |
+
index_tag.change(lambda i:gr.Dropdown(choices=list([f"({j+1}/{len(tags_plus_models[i][2])}) {tags_plus_models[i][2][j]}" for j in range(len(tags_plus_models[i][2]))])),
|
517 |
+
index_tag,index_first_model)
|
518 |
+
load_info=gr.Button("Load Models")
|
519 |
+
load_info.click(fonc_load_info,[nb_of_models_to_gen,index_tag,index_first_model],[nb_of_models_to_gen,disp_info,list_models_to_gen])
|
520 |
+
|
521 |
+
with gr.Accordion("Models Custom",open=False) :
|
522 |
+
with gr.Row():
|
523 |
+
text_list_model_custom=gr.Textbox(label="List Models Custom")
|
524 |
+
with gr.Column():
|
525 |
+
list_model_custom=gr.Dropdown(choices=[["",[]]], value=[], visible=False)
|
526 |
+
#use_models_custom=gr.Radio("Use Models Custom",value=False)
|
527 |
+
cut_model_custom=gr.Button("Cut Text Models Custom")
|
528 |
+
cut_model_custom.click(aff_models_perso,[text_list_model_custom],[list_model_custom])
|
529 |
+
|
530 |
+
index_first_model_custom=gr.Dropdown(label="First model",choices=list([]), type="index")
|
531 |
+
list_model_custom.change(lambda li:gr.Dropdown(choices=list([f"({j+1}/{len(li)}) {li[j]}" for j in range(len(li))])),
|
532 |
+
[list_model_custom],index_first_model_custom)
|
533 |
+
|
534 |
+
load_model_custom=gr.Button("Load Models Custom")
|
535 |
+
load_model_custom.click(fonc_load_info_custom,[nb_of_models_to_gen,list_model_custom,index_first_model_custom],[nb_of_models_to_gen,disp_info,list_models_to_gen])
|
536 |
|
537 |
+
list_models_to_gen.change(crea_list_task,[id_session,list_param,list_models_to_gen,nb_images_by_prompt],[])
|
538 |
+
|
539 |
+
|
540 |
+
|
541 |
+
with gr.Column():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
|
543 |
+
button_start=gr.Button("START")
|
544 |
+
button_stop=gr.Button("STOP")
|
545 |
+
cont=gr.Checkbox(True,visible=False)
|
546 |
+
button_start.click(lambda:True,[],[cont])
|
547 |
+
button_stop.click(lambda:False,[],[cont])
|
548 |
+
text_actu=gr.Textbox("",label="in progress",interactive=False,lines=6)
|
549 |
+
update_actu=gr.Number(0,visible=False)
|
550 |
+
update_actu.change(fonc_update_actu,[text_actu,id_session],[text_actu])
|
551 |
+
with gr.Row():
|
552 |
+
outputs=[]
|
553 |
+
id_modules=[]
|
554 |
+
states=[]
|
555 |
+
for i in range(nb_req_simult):
|
556 |
+
#outputs.append(gr.Image(None,interactive=False,render=False))
|
557 |
+
#id_modules.append(gr.Number(i,interactive=False,render=False))
|
558 |
+
outputs.append(gr.Image(None,interactive=False,visible=False))
|
559 |
+
id_modules.append(gr.Number(i,interactive=False,visible=False))
|
560 |
+
states.append(gr.Textbox("1",interactive=False,visible=False))
|
561 |
+
for o,i,s in zip(outputs,id_modules,states):
|
562 |
+
#o.change(fonc_start,[id_session,i],[o])
|
563 |
+
#o.change(test_change,[],[])
|
564 |
+
s.change(fonc_start,[id_session,i,s,cont],[o,s,update_actu])
|
565 |
+
#button_start.click(lambda : gr.Image(None),[],[o])
|
566 |
+
gen_event = gr.on(triggers=[button_start.click], fn=fonc_init,inputs=[s], outputs=[s])
|
567 |
+
|
568 |
+
with gr.Column(scale=2):
|
569 |
+
gallery = gr.Gallery(label="Output", show_download_button=True, elem_classes="gallery",
|
570 |
+
interactive=False, show_share_button=True, container=True, format="png",
|
571 |
+
preview=True, object_fit="cover",columns=4,rows=4)
|
572 |
+
with gr.Column(scale=3):
|
573 |
+
button_load_gallery=gr.Button("Load Gallery All")
|
574 |
+
button_load_gallery.click(fonc_load_gallery,[id_session,gallery],[gallery])
|
575 |
+
|
576 |
+
index_gallery=gr.Number(-1,visible=False)
|
577 |
+
button_load_gallery_first=gr.Button("Load Gallery first model")
|
578 |
+
button_load_gallery_first.click(index_gallery_first,[],[index_gallery])
|
579 |
+
with gr.Row():
|
580 |
+
button_load_gallery_prev=gr.Button("Prev model")
|
581 |
+
button_load_gallery_next=gr.Button("Next model")
|
582 |
+
button_load_gallery_next.click(index_gallery_next,[index_gallery,list_models_to_gen],[index_gallery])
|
583 |
+
button_load_gallery_prev.click(index_gallery_prev,[index_gallery,list_models_to_gen],[index_gallery])
|
584 |
+
index_gallery.change(fonc_load_gallery_by_model,[id_session,gallery,list_models_to_gen,index_gallery],[gallery])
|
585 |
+
text_model_actu_gal = gr.Textbox(label='Model Actu:', lines=1, interactive = False)
|
586 |
+
index_gallery.change(change_text_model_actu_gal,[list_models_to_gen,index_gallery],[text_model_actu_gal])
|
587 |
+
with gr.Row():
|
588 |
+
with gr.Column():
|
589 |
+
button_add_to_bl=gr.Button("Add to Blacklist")
|
590 |
+
#button_remove_from_bl=gr.Button("Remove from Blacklist")
|
591 |
+
text_bl=gr.Textbox(label='Blacklist', lines=5, interactive = True)
|
592 |
+
button_add_to_bl.click(fonc_add_to_text,[text_bl,list_models_to_gen,index_gallery],[text_bl])
|
593 |
+
#button_remove_from_bl.click(fonc_remove_from_text,[text_bl,list_models_to_gen,index_gallery],[text_bl])
|
594 |
+
with gr.Column():
|
595 |
+
button_add_to_fav=gr.Button("Add to Favlist")
|
596 |
+
text_fav=gr.Textbox(label='Favlist', lines=5, interactive = True)
|
597 |
+
button_add_to_fav.click(fonc_add_to_text,[text_fav,list_models_to_gen,index_gallery],[text_fav])
|
598 |
+
|
599 |
|
600 |
|
601 |
|