DemiPoto commited on
Commit
0cc191e
·
verified ·
1 Parent(s): 8b99034

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +156 -132
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
- def test_pass(test):
65
- if test==os.getenv('p'):
66
- print("ok")
67
- return gr.Dropdown(label="Lists Tags", show_label=True, choices=list(models_test) , interactive = True)
68
- else:
69
- print("nop")
70
- return gr.Dropdown(label="Lists Tags", show_label=True, choices=list([]) , interactive = True)
71
 
72
  def test_pass_aff(test):
73
  if test==os.getenv('p'):
74
- return gr.Accordion( open=True, visible=True) ,gr.Row(visible=False)
75
  else:
76
- return gr.Accordion( open=True, visible=False) , gr.Row()
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.Column():
445
- id_session=gr.Number(visible=False,value=0)
446
- with gr.Group():
447
  with gr.Row():
448
  with gr.Column(scale=4):
449
- txt_input = gr.Textbox(label='Your prompt:', lines=4, interactive = True)
450
- neg_input = gr.Textbox(label='Negative prompt:', lines=4, interactive = True)
 
 
 
 
 
 
 
 
451
  with gr.Column(scale=4):
452
- with gr.Row():
453
- width = gr.Slider(label="Width", info="If 0, the default value is used.", maximum=2024, step=32, value=0, interactive = True)
454
- height = gr.Slider(label="Height", info="If 0, the default value is used.", maximum=2024, step=32, value=0, interactive = True)
455
- with gr.Row():
456
- choice_ratio = gr.Dropdown(label="Ratio Width/Height",
457
- info="OverWrite Width and Height (W*H<1024*1024)",
458
- show_label=True, choices=list(list_ratios) , interactive = True, value=list_ratios[0][1])
459
- choice_ratio.change(ratio_chosen,[choice_ratio,width,height],[width,height])
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
- nb_images_by_prompt=gr.Number(2,label="Number of images by prompt:",interactive=True)
489
- nb_of_models_to_gen=gr.Number(10,label="Number of Models:",interactive=True)
490
- index_tag=gr.Dropdown(label="Tag",choices=list(list_tags),type="index")
491
- index_first_model=gr.Dropdown(label="First model",choices=list([]), type="index")
492
- 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]))])),
493
- index_tag,index_first_model)
494
- load_info=gr.Button("Load Models")
495
- 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])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
 
497
- with gr.Accordion("Models Custom",open=False) :
 
 
 
 
 
 
 
 
 
 
498
  with gr.Row():
499
- text_list_model_custom=gr.Textbox(label="List Models Custom")
 
500
  with gr.Column():
501
- list_model_custom=gr.Dropdown(choices=[["",[]]], value=[], visible=False)
502
- #use_models_custom=gr.Radio("Use Models Custom",value=False)
503
- cut_model_custom=gr.Button("Cut Text Models Custom")
504
- cut_model_custom.click(aff_models_perso,[text_list_model_custom],[list_model_custom])
505
-
506
- index_first_model_custom=gr.Dropdown(label="First model",choices=list([]), type="index")
507
- list_model_custom.change(lambda li:gr.Dropdown(choices=list([f"({j+1}/{len(li)}) {li[j]}" for j in range(len(li))])),
508
- [list_model_custom],index_first_model_custom)
509
-
510
- load_model_custom=gr.Button("Load Models Custom")
511
- 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])
512
-
513
- list_models_to_gen.change(crea_list_task,[id_session,list_param,list_models_to_gen,nb_images_by_prompt],[])
514
-
515
-
516
-
517
- with gr.Column():
 
 
 
 
 
 
 
 
518
 
519
- button_start=gr.Button("START")
520
- button_stop=gr.Button("STOP")
521
- cont=gr.Checkbox(True,visible=False)
522
- button_start.click(lambda:True,[],[cont])
523
- button_stop.click(lambda:False,[],[cont])
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
- with gr.Column(scale=2):
545
- gallery = gr.Gallery(label="Output", show_download_button=True, elem_classes="gallery",
546
- interactive=False, show_share_button=True, container=True, format="png",
547
- preview=True, object_fit="cover",columns=4,rows=4)
548
- with gr.Column(scale=3):
549
- button_load_gallery=gr.Button("Load Gallery All")
550
- button_load_gallery.click(fonc_load_gallery,[id_session,gallery],[gallery])
551
-
552
- index_gallery=gr.Number(-1,visible=False)
553
- button_load_gallery_first=gr.Button("Load Gallery first model")
554
- button_load_gallery_first.click(index_gallery_first,[],[index_gallery])
555
- with gr.Row():
556
- button_load_gallery_prev=gr.Button("Prev model")
557
- button_load_gallery_next=gr.Button("Next model")
558
- button_load_gallery_next.click(index_gallery_next,[index_gallery,list_models_to_gen],[index_gallery])
559
- button_load_gallery_prev.click(index_gallery_prev,[index_gallery,list_models_to_gen],[index_gallery])
560
- index_gallery.change(fonc_load_gallery_by_model,[id_session,gallery,list_models_to_gen,index_gallery],[gallery])
561
- text_model_actu_gal = gr.Textbox(label='Model Actu:', lines=1, interactive = False)
562
- index_gallery.change(change_text_model_actu_gal,[list_models_to_gen,index_gallery],[text_model_actu_gal])
563
- with gr.Row():
564
- with gr.Column():
565
- button_add_to_bl=gr.Button("Add to Blacklist")
566
- #button_remove_from_bl=gr.Button("Remove from Blacklist")
567
- text_bl=gr.Textbox(label='Blacklist', lines=5, interactive = True)
568
- button_add_to_bl.click(fonc_add_to_text,[text_bl,list_models_to_gen,index_gallery],[text_bl])
569
- #button_remove_from_bl.click(fonc_remove_from_text,[text_bl,list_models_to_gen,index_gallery],[text_bl])
570
- with gr.Column():
571
- button_add_to_fav=gr.Button("Add to Favlist")
572
- text_fav=gr.Textbox(label='Favlist', lines=5, interactive = True)
573
- button_add_to_fav.click(fonc_add_to_text,[text_fav,list_models_to_gen,index_gallery],[text_fav])
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