openfree commited on
Commit
b976f97
Β·
verified Β·
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")