Spaces:
Running
Running
title
Browse files
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: Seed-Edit
|
3 |
emoji: 🎨
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
|
|
1 |
---
|
2 |
+
title: Seed-Edit-V1.0
|
3 |
emoji: 🎨
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
app.py
CHANGED
@@ -117,10 +117,10 @@ def main():
|
|
117 |
cfg_scale = gr.Slider(value=0.5, minimum=0.0, maximum=1.0, step=0.1, label="Edit/Text Strength (CFG)", interactive=True)
|
118 |
|
119 |
with gr.Row():
|
120 |
-
input_image = gr.Image(label="Input Image", type="pil", interactive=
|
|
|
|
|
121 |
height=resolution, width=resolution)
|
122 |
-
edited_image = gr.Image(label="Edited Image", type="pil",
|
123 |
-
interactive=False, height=resolution, width=resolution)
|
124 |
|
125 |
gr.Markdown(help_text)
|
126 |
|
|
|
117 |
cfg_scale = gr.Slider(value=0.5, minimum=0.0, maximum=1.0, step=0.1, label="Edit/Text Strength (CFG)", interactive=True)
|
118 |
|
119 |
with gr.Row():
|
120 |
+
input_image = gr.Image(label="Input Image", type="pil", interactive=False,
|
121 |
+
height=resolution, width=resolution)
|
122 |
+
edited_image = gr.Image(label="Edited Image", type="pil", interactive=False,
|
123 |
height=resolution, width=resolution)
|
|
|
|
|
124 |
|
125 |
gr.Markdown(help_text)
|
126 |
|