sled-group / InfEdit

[CVPR 2024] Official implementation of CVPR 2024 paper: "Inversion-Free Image Editing with Natural Language"
https://sled-group.github.io/InfEdit/
Other
242 stars 7 forks source link

Code difference between github and huggingface #18

Closed fkcptlst closed 3 months ago

fkcptlst commented 3 months ago

Hi, I noticed there're some file differences between the code on github and code on huggingface.

For instance, code on huggingface has a pipeline_ddcm.py.

Could you please elaborate a bit about their differences?

Also, what does the abbrevation "ead" in "pipeline_ead.py" stand for? Thanks!

h6kplus commented 3 months ago

The pipeline_ddcm.py was the pipeline for DDCM inversion where you can refer to in Section 3.2, but it was not used as the final pipeline. The pipeline_ead.py is the final pipeline that add the Unified Attention Control (UAC) to the DDCM image editing pipeline (see Section 4).

For the name ead, it was just the origin name of the project when we were developing the code.

fkcptlst commented 3 months ago

Thanks for the reply. Closing issue as completed.