Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -253,6 +253,8 @@ with gr.Blocks(theme=theme, css="style.css") as demo:
|
|
253 |
use_prompt_2 = gr.Checkbox(label="Use prompt 2", value=False)
|
254 |
use_negative_prompt_2 = gr.Checkbox(label="Use negative prompt 2", value=False)
|
255 |
with gr.Group():
|
|
|
|
|
256 |
lora = gr.Text(label='LoRA 1', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
|
257 |
lora2 = gr.Text(label='LoRA 2', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
|
258 |
lora_scale = gr.Slider(
|
|
|
253 |
use_prompt_2 = gr.Checkbox(label="Use prompt 2", value=False)
|
254 |
use_negative_prompt_2 = gr.Checkbox(label="Use negative prompt 2", value=False)
|
255 |
with gr.Group():
|
256 |
+
gr.Markdown("""### LoRAs
|
257 |
+
<small>To activate the use of LoRAs, you should check only the 'Use 1 LoRA' checkbox if you want to use just one LoRA, and only the 'Use 2 LoRAs' checkbox if you want to use 2 LoRAs (i.e., blend styles)! It's important that all LoRAs are from the same base version of the selected model. For example, if the model is SDXL 1.0, the LoRA must also be.</small>""")
|
258 |
lora = gr.Text(label='LoRA 1', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
|
259 |
lora2 = gr.Text(label='LoRA 2', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
|
260 |
lora_scale = gr.Slider(
|