Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -285,6 +285,9 @@ css = """
|
|
285 |
# Gradio interface
|
286 |
with gr.Blocks(theme=theme, css=css) as app:
|
287 |
gr.HTML("<center><h6>🎨 Image Studio</h6></center>")
|
|
|
|
|
|
|
288 |
with gr.Tab("Flip Image"):
|
289 |
with gr.Row():
|
290 |
image_input = gr.Image(type="numpy", label="Upload Image")
|
@@ -325,10 +328,6 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
325 |
inputs=[image_input, filter_type],
|
326 |
outputs=image_output
|
327 |
)
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
# gr.load("models/digiplay/AnalogMadness-realistic-model-v7")
|
332 |
-
gr.load("models/XLabs-AI/flux-RealismLora")
|
333 |
|
334 |
app.launch(share=True)
|
|
|
285 |
# Gradio interface
|
286 |
with gr.Blocks(theme=theme, css=css) as app:
|
287 |
gr.HTML("<center><h6>🎨 Image Studio</h6></center>")
|
288 |
+
with gr.Tab("Text to Image"):
|
289 |
+
# gr.load("models/digiplay/AnalogMadness-realistic-model-v7")
|
290 |
+
gr.load("models/XLabs-AI/flux-RealismLora")
|
291 |
with gr.Tab("Flip Image"):
|
292 |
with gr.Row():
|
293 |
image_input = gr.Image(type="numpy", label="Upload Image")
|
|
|
328 |
inputs=[image_input, filter_type],
|
329 |
outputs=image_output
|
330 |
)
|
331 |
+
|
|
|
|
|
|
|
|
|
332 |
|
333 |
app.launch(share=True)
|