openfree commited on
Commit
b976f97
1 Parent(s): 40f473e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -550,12 +550,26 @@ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css, delete_cache=(60, 3600)) as a
550
  loras_state = gr.State(loras)
551
  selected_indices = gr.State([])
552
 
 
 
 
 
 
 
 
 
 
 
 
553
  with gr.Row():
554
  with gr.Column(scale=3):
555
  prompt = gr.Textbox(label="Prompt", lines=1, placeholder="Type a prompt after selecting a LoRA")
556
  with gr.Column(scale=1):
557
  generate_button = gr.Button("Generate", variant="primary", elem_classes=["button_total"])
558
 
 
 
 
559
  with gr.Row(elem_id="loaded_loras"):
560
  with gr.Column(scale=1, min_width=25):
561
  randomize_button = gr.Button("🎲", variant="secondary", scale=1, elem_id="random_btn")
 
550
  loras_state = gr.State(loras)
551
  selected_indices = gr.State([])
552
 
553
+ gr.Markdown(
554
+ """
555
+ # MixGen3: 멀티 Lora(이미지 학습) 통합 생성 모델
556
+
557
+ ### 사용 안내:
558
+ 1) 갤러리에서 원하는 모델을 선택(최대 3개까지)
559
+ 2) 프롬프트에 한글 또는 영문으로 원하는 내용을 입력
560
+ 3) Generate 버튼 실행
561
+ """
562
+ )
563
+
564
  with gr.Row():
565
  with gr.Column(scale=3):
566
  prompt = gr.Textbox(label="Prompt", lines=1, placeholder="Type a prompt after selecting a LoRA")
567
  with gr.Column(scale=1):
568
  generate_button = gr.Button("Generate", variant="primary", elem_classes=["button_total"])
569
 
570
+
571
+
572
+
573
  with gr.Row(elem_id="loaded_loras"):
574
  with gr.Column(scale=1, min_width=25):
575
  randomize_button = gr.Button("🎲", variant="secondary", scale=1, elem_id="random_btn")