Spaces:
Runtime error
Runtime error
Commit
•
457748c
1
Parent(s):
aae5b6b
Update app.py
Browse files
app.py
CHANGED
@@ -233,7 +233,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as app:
|
|
233 |
with gr.Column(scale=1, elem_id="gen_column"):
|
234 |
generate_button = gr.Button("Generate", variant="primary", elem_id="gen_btn")
|
235 |
with gr.Row():
|
236 |
-
with gr.Column(
|
237 |
selected_info = gr.Markdown("")
|
238 |
gallery = gr.Gallery(
|
239 |
[(item["image"], item["title"]) for item in loras],
|
@@ -247,7 +247,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as app:
|
|
247 |
gr.Markdown("[Check the list of FLUX LoRas](https://huggingface.co/models?other=base_model:adapter:black-forest-labs/FLUX.1-dev)", elem_id="lora_list")
|
248 |
custom_lora_info = gr.HTML(visible=False)
|
249 |
custom_lora_button = gr.Button("Remove custom LoRA", visible=False)
|
250 |
-
with gr.Column(
|
251 |
progress_bar = gr.Markdown(elem_id="progress",visible=False)
|
252 |
result = gr.Image(label="Generated Image")
|
253 |
|
|
|
233 |
with gr.Column(scale=1, elem_id="gen_column"):
|
234 |
generate_button = gr.Button("Generate", variant="primary", elem_id="gen_btn")
|
235 |
with gr.Row():
|
236 |
+
with gr.Column():
|
237 |
selected_info = gr.Markdown("")
|
238 |
gallery = gr.Gallery(
|
239 |
[(item["image"], item["title"]) for item in loras],
|
|
|
247 |
gr.Markdown("[Check the list of FLUX LoRas](https://huggingface.co/models?other=base_model:adapter:black-forest-labs/FLUX.1-dev)", elem_id="lora_list")
|
248 |
custom_lora_info = gr.HTML(visible=False)
|
249 |
custom_lora_button = gr.Button("Remove custom LoRA", visible=False)
|
250 |
+
with gr.Column():
|
251 |
progress_bar = gr.Markdown(elem_id="progress",visible=False)
|
252 |
result = gr.Image(label="Generated Image")
|
253 |
|