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")