Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -150,10 +150,10 @@ with gr.Blocks(css=css) as demo:
|
|
150 |
|
151 |
title = gr.HTML(
|
152 |
'''
|
153 |
-
<h1 style="text-align: center;">LoRA Fusion</h1>
|
154 |
<p style="text-align: center;">
|
155 |
-
Fuse 2 custom LoRa models <br />
|
156 |
-
|
157 |
</p>
|
158 |
'''
|
159 |
)
|
@@ -220,7 +220,7 @@ with gr.Blocks(css=css) as demo:
|
|
220 |
visible=False
|
221 |
)
|
222 |
|
223 |
-
load_models_btn = gr.Button("Load models and .safetensors")
|
224 |
|
225 |
# PART 2 • INFERENCE
|
226 |
with gr.Column():
|
@@ -233,7 +233,7 @@ with gr.Blocks(css=css) as demo:
|
|
233 |
placeholder = "e.g: a triggerWordOne portrait in triggerWord2 style"
|
234 |
)
|
235 |
|
236 |
-
run_btn = gr.Button("Run", elem_id="run_button")
|
237 |
|
238 |
output_image = gr.Image(
|
239 |
label = "Output"
|
|
|
150 |
|
151 |
title = gr.HTML(
|
152 |
'''
|
153 |
+
<h1 style="text-align: center;">SD-XL LoRA Fusion</h1>
|
154 |
<p style="text-align: center;">
|
155 |
+
Fuse 2 custom StableDiffusion-XL LoRa models <br />
|
156 |
+
If you are running this demo in a duplicated private space, all your private LoRa models tagged will be automatically listed in LoRa IDs dropdowns
|
157 |
</p>
|
158 |
'''
|
159 |
)
|
|
|
220 |
visible=False
|
221 |
)
|
222 |
|
223 |
+
load_models_btn = gr.Button("1. Load models and .safetensors")
|
224 |
|
225 |
# PART 2 • INFERENCE
|
226 |
with gr.Column():
|
|
|
233 |
placeholder = "e.g: a triggerWordOne portrait in triggerWord2 style"
|
234 |
)
|
235 |
|
236 |
+
run_btn = gr.Button("2. Run", elem_id="run_button")
|
237 |
|
238 |
output_image = gr.Image(
|
239 |
label = "Output"
|