Spaces:
Sleeping
Sleeping
barakmam
commited on
Commit
·
1059cc6
1
Parent(s):
21dcae2
update markdown and disclaimer
Browse files
app.py
CHANGED
@@ -52,9 +52,11 @@ if device == "cuda":
|
|
52 |
# with gr.Blocks(css="style.css") as demo:
|
53 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
54 |
gr.Markdown(f""" # Real Time Editing with GNRI Inversion 🍎⚡️
|
55 |
-
This is a demo for our [paper](https://arxiv.org/abs/2312.12540) **GNRI: Lightning-fast Image Inversion and Editing
|
56 |
-
|
57 |
-
|
|
|
|
|
58 |
""")
|
59 |
inv_state = gr.State()
|
60 |
|
@@ -192,7 +194,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
192 |
cache_examples=False
|
193 |
)
|
194 |
|
195 |
-
gr.Markdown(f"""Disclaimer:
|
|
|
|
|
196 |
|
197 |
input_image.change(set_pipe, inputs=[input_image, description_prompt, edit_guidance_scale, num_inference_steps,
|
198 |
num_inference_steps, inversion_max_step, rnri_iterations, rnri_alpha, rnri_lr],
|
|
|
52 |
# with gr.Blocks(css="style.css") as demo:
|
53 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
54 |
gr.Markdown(f""" # Real Time Editing with GNRI Inversion 🍎⚡️
|
55 |
+
This is a demo for our [paper](https://arxiv.org/abs/2312.12540) **GNRI: Lightning-fast Image Inversion and Editing
|
56 |
+
for Text-to-Image Diffusion Models. Accepted to ICLR 2025**.
|
57 |
+
More details can be found in the [project page](https://barakmam.github.io/rnri.github.io/).
|
58 |
+
|
59 |
+
The demo is based on SDXL. Improved results can be achieved with our FLUX version (examples in project page).
|
60 |
""")
|
61 |
inv_state = gr.State()
|
62 |
|
|
|
194 |
cache_examples=False
|
195 |
)
|
196 |
|
197 |
+
gr.Markdown(f"""Disclaimer: The results may vary depending on the hyper-parameters. Some typical hyper-parameters
|
198 |
+
are xxxx. Errors may appear due to resource availability by HF.
|
199 |
+
Performance may be inferior to the reported in the paper due to hardware limitation.""")
|
200 |
|
201 |
input_image.change(set_pipe, inputs=[input_image, description_prompt, edit_guidance_scale, num_inference_steps,
|
202 |
num_inference_steps, inversion_max_step, rnri_iterations, rnri_alpha, rnri_lr],
|