Spaces:
Running
on
Zero
Running
on
Zero
update app
Browse files
app.py
CHANGED
|
@@ -227,24 +227,16 @@ css="""
|
|
| 227 |
margin: 0 auto;
|
| 228 |
max-width: 1100px;
|
| 229 |
}
|
| 230 |
-
#main-title h1 {
|
| 231 |
-
font-size: 2.1em !important;
|
| 232 |
-
display: flex;
|
| 233 |
-
align-items: center;
|
| 234 |
-
justify-content: center;
|
| 235 |
-
gap: 10px;
|
| 236 |
-
}
|
| 237 |
"""
|
| 238 |
|
|
|
|
| 239 |
with gr.Blocks(css=css, theme=orange_red_theme) as demo:
|
| 240 |
with gr.Column(elem_id="col-container"):
|
| 241 |
-
gr.Markdown(
|
| 242 |
-
"# **Qwen-Image-Edit-2509-LoRAs-Fast-Fusion** <img src='https://huggingface.co/spaces/prithivMLmods/Qwen-Image-Edit-2509-LoRAs-Fast-Fusion/resolve/main/Lora%20Huggy.png' alt='Logo' width='35' height='35' style='display: inline-block; vertical-align: text-bottom; margin-left: 5px;'>",
|
| 243 |
-
elem_id="main-title"
|
| 244 |
-
)
|
| 245 |
gr.Markdown("Perform diverse image edits using specialized [LoRA](https://huggingface.co/models?other=base_model:adapter:Qwen/Qwen-Image-Edit-2509) adapters for the [Qwen-Image-Edit](https://huggingface.co/Qwen/Qwen-Image-Edit-2509) model.")
|
| 246 |
with gr.Row(equal_height=True):
|
| 247 |
-
|
| 248 |
with gr.Column(scale=1):
|
| 249 |
with gr.Row():
|
| 250 |
image_1 = gr.Image(label="Base Image", type="pil", height=290)
|
|
|
|
| 227 |
margin: 0 auto;
|
| 228 |
max-width: 1100px;
|
| 229 |
}
|
| 230 |
+
#main-title h1 {font-size: 2.1em !important;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 231 |
"""
|
| 232 |
|
| 233 |
+
|
| 234 |
with gr.Blocks(css=css, theme=orange_red_theme) as demo:
|
| 235 |
with gr.Column(elem_id="col-container"):
|
| 236 |
+
gr.Markdown("# **Qwen-Image-Edit-2509-LoRAs-Fast-Fusion**", elem_id="main-title")
|
|
|
|
|
|
|
|
|
|
| 237 |
gr.Markdown("Perform diverse image edits using specialized [LoRA](https://huggingface.co/models?other=base_model:adapter:Qwen/Qwen-Image-Edit-2509) adapters for the [Qwen-Image-Edit](https://huggingface.co/Qwen/Qwen-Image-Edit-2509) model.")
|
| 238 |
with gr.Row(equal_height=True):
|
| 239 |
+
|
| 240 |
with gr.Column(scale=1):
|
| 241 |
with gr.Row():
|
| 242 |
image_1 = gr.Image(label="Base Image", type="pil", height=290)
|