Spaces:
Running
on
Zero
Running
on
Zero
other place for disclaimer
#6
by
multimodalart
HF Staff
- opened
app.py
CHANGED
@@ -113,7 +113,6 @@ with gr.Blocks(css=css) as demo:
|
|
113 |
|
114 |
with gr.Column(elem_id="col-container"):
|
115 |
gr.Markdown(f"""# IC-Edit
|
116 |
-
## ⚠️ If you meet a failure case, **try another seed** !
|
117 |
**Image Editing is worth a single LoRA!** A demo for [IC-Edit](https://arxiv.org/pdf/2504.20690).
|
118 |
More **open-source**, with **lower costs**, **faster speed** (it takes about 9 seconds to process one image), and **powerful performance**.
|
119 |
For more details, check out our [Github Repository](https://github.com/River-Zhang/ICEdit) and [website](https://river-zhang.github.io/ICEdit-gh-pages/). If our project resonates with you or proves useful, we'd be truly grateful if you could spare a moment to give it a star.
|
@@ -135,9 +134,9 @@ For more details, check out our [Github Repository](https://github.com/River-Zha
|
|
135 |
container=False,
|
136 |
)
|
137 |
run_button = gr.Button("Run")
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
with gr.Accordion("Advanced Settings", open=True):
|
142 |
|
143 |
seed = gr.Slider(
|
|
|
113 |
|
114 |
with gr.Column(elem_id="col-container"):
|
115 |
gr.Markdown(f"""# IC-Edit
|
|
|
116 |
**Image Editing is worth a single LoRA!** A demo for [IC-Edit](https://arxiv.org/pdf/2504.20690).
|
117 |
More **open-source**, with **lower costs**, **faster speed** (it takes about 9 seconds to process one image), and **powerful performance**.
|
118 |
For more details, check out our [Github Repository](https://github.com/River-Zhang/ICEdit) and [website](https://river-zhang.github.io/ICEdit-gh-pages/). If our project resonates with you or proves useful, we'd be truly grateful if you could spare a moment to give it a star.
|
|
|
134 |
container=False,
|
135 |
)
|
136 |
run_button = gr.Button("Run")
|
137 |
+
with gr.Column():
|
138 |
+
result = gr.Image(label="Result", show_label=False)
|
139 |
+
gr.Markdown("⚠️ If your edit didn't work as desired, **try again with another seed** !")
|
140 |
with gr.Accordion("Advanced Settings", open=True):
|
141 |
|
142 |
seed = gr.Slider(
|