Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -309,8 +309,8 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
309 |
model1 = gr.load("models/prithivMLmods/SD3.5-Large-Turbo-HyperRealistic-LoRA")
|
310 |
with gr.Accordion("Turbo-Realism", open=False):
|
311 |
model2 = gr.load("models/prithivMLmods/SD3.5-Turbo-Realism-2.0-LoRA")
|
312 |
-
with gr.Accordion("
|
313 |
-
model3 = gr.load("models/
|
314 |
|
315 |
with gr.Tab("Flip Image"):
|
316 |
with gr.Row():
|
@@ -319,6 +319,8 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
319 |
with gr.Row():
|
320 |
image_button = gr.Button("Run", variant='primary')
|
321 |
image_button.click(flip_image, inputs=image_input, outputs=image_output)
|
|
|
|
|
322 |
with gr.Tab("Image Filters"):
|
323 |
with gr.Row():
|
324 |
with gr.Column():
|
|
|
309 |
model1 = gr.load("models/prithivMLmods/SD3.5-Large-Turbo-HyperRealistic-LoRA")
|
310 |
with gr.Accordion("Turbo-Realism", open=False):
|
311 |
model2 = gr.load("models/prithivMLmods/SD3.5-Turbo-Realism-2.0-LoRA")
|
312 |
+
with gr.Accordion("Stable-Diffusion-3.5-large", open=False):
|
313 |
+
model3 = gr.load("models/stabilityai/stable-diffusion-3.5-large")
|
314 |
|
315 |
with gr.Tab("Flip Image"):
|
316 |
with gr.Row():
|
|
|
319 |
with gr.Row():
|
320 |
image_button = gr.Button("Run", variant='primary')
|
321 |
image_button.click(flip_image, inputs=image_input, outputs=image_output)
|
322 |
+
clear_results = gr.Button(value="Clear Image", variant="primary", elem_id="clear_button")
|
323 |
+
clear_results.click(lambda: (None), None, [image_output])
|
324 |
with gr.Tab("Image Filters"):
|
325 |
with gr.Row():
|
326 |
with gr.Column():
|