Here are the responses to the remaining questions:
- **Q3:** For the consideration of reproducibility, the code of the proposed method is suggested to be provided.
- **A3:** The anonymous code has already been included in the Supplementary Meterial of the initial submission. We will make the code publicly released upon acceptance.
---
- **Q4:** Are the comparison methods learning-free? If so, it would be beneficial to provide additional details about the experimental settings. Furthermore, for the comparison experiments, it might be advisable to incorporate some learning-free methods, such as LIVR [1], to ensure a comprehensive evaluation.
- **A4:**
- Among the compared four methods, only SD inpainting is learning-free. The other three (DreamBooth, TI, ControlNet) have to be finetuned before generation. For SD inpainting and our model, we input the given visual condition and text prompt at the same time to the model for direct inference. For DreamBooth and TI, we first use the given visual condition to update the model parameters or prompt tokens according to their default training settings, and then generate the target image using the text prompt and finetuned model. ControlNet first trains an extra module on edge images, and then generate the target image using the edge image of the given visual conditons.
- ILVR [a] is essentially a visual conditioned method by utilizing classifier guidance to generate images closer to reference images on face model. However, this work only takes visual conditions as input and generates a random new face that is similar to the given face. Thus this work could not be mitigated to the text-visual customization task (TV2I), where we intend to generate a new image that not only contains the visual condition but also follows the text prompt guidance. The core of this task is to fit in both two visual/textual conditions to generate a harmonious result. As far as we know, we are the first and only learn-free TV2I work so far. We have added these discussions in the related work section of the revised main paper.
[a] Jooyoung Choi, Sungwon Kim, Yonghyun Jeong, Youngjune Gwon, and Sungroh Yoon. Ilvr: Conditioning method for denoising diffusion probabilistic models. arXiv preprint arXiv:2108.02938, 2021.
---
- **Q5:** Sections 3.2 and 3.3 lack a theoretical foundation or pseudo-code to facilitate clearer understanding and reading.
- **A5:** Thank you for your suggestion. We added a pseudo-code in Sec. A.5 of the revised paper to help clearer understanding.
---
- **Q6:** It is not clear in Section 3.3, paragraph 4. What is the difference between two steps/two ends and t-th diffusion step, and how to use them?
- **A6:**
- Two steps $x_{t_{1}}$, $x_{t_{2}}$ in paragraph 5 are identical to $x_{t-k}$, $x_{t}$ in paragraph 4. They refer to the starting point (high noise) and ending point (low noise) of our cycle process. In experiments, we use the starting point t2 of 700-th, and the ending point t1 of 500-th. Since there is a large redundant in the cyclical process, we can apply the skip-step strategy of DDIM to speed up the "reconstruct" process by 100x, i.e., we only use three steps (700-th, 600-th, 500-th) for the "reconstruct" process.
- After the reconstruction part, we further disturb the generation process by changing the noise level back to 700-th (can be viewed as returning back to the starting point of 700-th). A new cycle begins.
- We have updated the corresponding description in the manuscript to make it clear.
---
- **Q7:** The evaluation in Table 2 and in Section 4.2 is not matched.
- **A7:** Thanks for pointing out the typo. The 'conditional consistency' in Table 2 and 'conditional correspondence' in Section 4.2 are the same thing. We have corrected this typo and updated it in the new version.