Response to Reviewer 6Ev1 - Part I
We sincerely appreciate your affirmation of the paper soundness, and kindly ask you to consider increasing the score based on the following clarification:
----------
- *The dataset's limited size of 1.5k samples*
**Answer:**
Regarding the dataset size, we discuss this in Section 3.2 (lines 215-228). While our dataset cannot be directly compared to others in terms of scale, it significantly exceeds others in terms of quality and the human effort involved in its creation:
a. **Data Quality:** our dataset is entirely manually curated, whereas many other datasets are generated using templates or rule-based methods, which sacrifice the dataset quality. Additionally, our dataset covers a rich variety of domains and categories to ensure unbiased representation.
b. **Dynamic Updates:** unlike static datasets, ours requires continuous, month-by-month human effort for updates and maintenance to ensure quality. We believe that few organizations can easily commit such labor and passionate. To date, we have annotated three versions of the dataset.
Besides, similar to datasets like ViQuAE and S3VQA, whose data volume is also on the order of thousands, we believe that a dataset of this scale is sufficient to reflect the performance of RAG models.
------
- *the authors filtered intractable instances that doesn't translate well, this might limit the dataset's diversity or introduce bias*
**Answer:**
We believe that "filtering instances that doesn't translate well" does not introduces bias. On the contrary, this filtering strategy enhances the evaluation accuracy. For example, consider a question like, "What is the latest work of the author of this book in the picture?" (referring to a local Chinese author). This question is appropriate in the Chinese context but not in the English context, since his books have neither English versions nor English introductions. Hence, we just simply discard the English question in this case, which naturally would not be asked in English by the users.
Meanwhile, we fully agree with your suggestion regarding multilingual aspects. Multilingual support is indeed a valuable future direction, particularly for exploring cross-lingual generalization, language gaps, and the benefits of mainstream languages for low-resource languages in the era of LLMs [1,2]. We plan to explore this broad topic in future work. It is worth noting that most VQA datasets are monolingual, while ours is bilingual, providing a richer evaluation perspective. The dataset from different language perspectives is also analyzed in Appendix D1 (lines 1112-1118).
Reference:
[1] Geigle, et al. Babel-ImageNet: Massively Multilingual Evaluation of Vision-and-Language Representations. ACL 2024.
[2] Qin, et al. Multilingual Large Language Model: A Survey of Resources, Taxonomy and Frontiers. arXiv 2024.
-------
- *latency or computational overhead of OmniSearch*
**Answer:**
In Table 6, we have compared the token consumption (i.e., computational overhead) and corresponding performance of different models. We observe that the full OmniSearch model consumes more tokens because solving problems correctly inherently requires more retrieval and LLM thinking processes.
Here, we also reported the average latency for each question. The results show that substituting some modules in OmniSearch with smaller models effectively reduces latency. Moreover, the ratio of search time to model inference time is roughly 2:3, indicating significant potential for optimization in both aspects. It is important to note that latency is a complex system engineering issue that involves not only the model's complexity but also factors network configuration of search APIs, caching strategies for retrieval content, inference model acceleration, and hardware FLOPS, etc.
| Planning Model | Sub-question Solver | Search Time (s/%) | Inference Time (s/%) | Total Time (s) |
| -------------- | ------------------- | ----------------- | -------------------- | -------------- |
| OmniSearch (G) | OmniSearch (G) | 14.1 (44.8%) | 18.4 (55.2%) | 31.5 |
| OmniSearch (G) | Qwen-VL-Chat | 12.3 (44.6%) | 15.3 (55.4%) | 27.6 |
| OmniSearch (Q) | OmniSearch (Q) | 8.5 (38.3%) | 13.7 (61.7%) | 22.2 |
| OmniSearch (Q) | GPT-4V | 11.8 (45.0%) | 14.4 (55.0%) | 26.2 |
Additionally, we supplemented the detailed computational cost of OmniSearch on questions with different answer update frequencies (fast, slow, never), which can be found in the response to Reviewer Z1ru.
---------------