Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -87,10 +87,10 @@ interface = gr.Interface(
|
|
87 |
gr.Image(label="Upload Image", type="pil"),
|
88 |
gr.Textbox(label="Describe Dress Color Change", placeholder="e.g. Make the dress sky blue")
|
89 |
],
|
90 |
-
outputs=gr.Image(label="Recolored Dress Output"),
|
91 |
title="Natural Dress Recoloring with Design Preservation (No GPU)",
|
92 |
description="Upload a fashion photo and use prompts like “Make the dress blue” or “Change to red silk”. This CPU-based app changes the color of dresses while preserving textures, embroidery, and shadows.",
|
93 |
allow_flagging="never"
|
94 |
)
|
95 |
|
96 |
-
interface.launch()
|
|
|
87 |
gr.Image(label="Upload Image", type="pil"),
|
88 |
gr.Textbox(label="Describe Dress Color Change", placeholder="e.g. Make the dress sky blue")
|
89 |
],
|
90 |
+
outputs=gr.Image(label="Recolored Dress Output", type = "pil"),
|
91 |
title="Natural Dress Recoloring with Design Preservation (No GPU)",
|
92 |
description="Upload a fashion photo and use prompts like “Make the dress blue” or “Change to red silk”. This CPU-based app changes the color of dresses while preserving textures, embroidery, and shadows.",
|
93 |
allow_flagging="never"
|
94 |
)
|
95 |
|
96 |
+
interface.launch()
|