Spaces:
Running
Running
Update app.py
Browse files
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")
|