Thank you for your efforts in reviewing! We have updated a new version of full paper considering all reviewers' advice. Here we provide some explanations for the weaknesses and questions raised before.
**Weakness1**: What is the difference and contributions compared to this work considering about PhotoChat, TikTalk aand DialogCC?
**Response1**:
Our proposed ChatSearch dataset is different from PhotoChat, TikTalk and DialogCC. ChatSearch dataset is proposed for **conversational image retrieval tasks**, which is different from common multimodal dialogues. We mainly require the model to be capable of **visual comprehension, multi-round conversation reasoning and image retrieval** to deal with the situation in ChatSearch.
- PhotoChat requires the model to retrieve images based on **plain textual dialogue**, while ChatSearch additionally requires the model to **comprehend visual content** and **modify previous retrieval results based on user feedback**.
- TikTalk is a dataset that requires the model to chat with the user according to the given video, focusing more on **video comprehension** than **retrieval**.
- DialogCC is a daily dialogue dataset, emphasizing the provision of a relevant image for each utterance in a dialogue. DialogCC is not proposed to evaluate the search ability of a retrieval model. ChatSearch dataset places more emphasis on the **search ability** of a chat assistant, requiring the model to **comprehend the entire historical conversation** and **understand the user's intent** in the current turn, rather than simply considering the **nearest utterance** to do visual matching.
We have also added some relevant methods to our related works section. Thank you for your advice!
**Weakness2**: How can we handle it if there are no images that we want?
**Response2**:
We have added a discussion paragraph in Appendix A.1 to talk about this unanswerable situation.
We admit that it's necessary for a retrieval system to deal with this unanswerable situation, which can enhance user-assistant interaction and improve system robustness. We provide two alternative system-level methods to in Fig 7 and Fig 8.
- The first method is to **let the model judge** if the query is answerable. We set a similarity threshold p and subsequently apply this threshold to winnow the retrieved image candidates based on their similarities before presenting them to the user. Only those candidates exceeding the prescribed threshold are retained. If none of image candidates is usable, the model will return a **UNFOUND response** to the user. Additionally, the model will return a predefined response indicating the absence of a suitable answer for the user's query. The model will offer several image candidates with higher similarity to serve as reference points for the user as well.
- The second method is to **ask the user to judge** whether the returned images are usable. To be precise, we add an option labeled as **UNSATISFIED**, which users can choose when none of the returned images prove satisfactory to them as a feedback during the interaction module.
**Weakness3**: There are many systems for text-to-image retrieval. Does this dataset address the issues that previous text-to-image retrieval systems can not perform? I mean, we can also handle the problem of image retrieval from dialogue without involving the proposed datasets by integrating text-based dialogue systems and image retrieval systems based on many image corpus. It should be more convincing if there is evidential reason that the author has to collect dataset.
**Response3**:
- The combination of a strong textual dialogue system, such as Large Language Model(LLM), together with a image retrieval system, can somehow solve part of dialogue-based image retrieval problem. For example, we can input the whole textual dialogue into the LLM and use the search query generated by LLM to retrieve an image with a image retrieval system. Nevertheless, a strong textual dialogue system can only reason for textual contents, **lacking visual reasoning ability**. Furthermore, the above simple combination system **can not support multi-round interaction with users** since its hard to feed the retrieved result into textual dialogue system.
- Besides, directly utilizing a multimodal LLM for image retrieval also performs bad since it can not follow human instructions about searching for an image. Thus, it's necessary to use **instruction data** such as ChatSearch to fine-tune the model, which has been widely-used on other domain[1][2][3].
- Finally, ChatSearch is also a suitable **evaluation benchmark** for conversational image retrieval in a common domain, which can be used to assess the ability of a chat-and-search assistant.
[1] Chung, Hyung Won, et al. "Scaling instruction-finetuned language models."
[2] Ouyang, Long, et al. "Training language models to follow instructions with human feedback."
[2] Liu, Haotian, et al. "Visual instruction tuning."