We thank reviewer 9WtD for their detailed feedback and suggestions, especially around baselines!
We have revised the paper and improved the writing.
> Some baselines (https://aclanthology.org/2023.emnlp-main.585.pdf, https://openreview.net/pdf?id=vDvFT7IX4O, and https://aclanthology.org/2023.acl-long.99.pdf) could be added to both the experiments and the related works sections. Although these works may not directly focus on multi-hop retrieval, they fit broadly within the same topic as this work, i.e., "query expansion." These works focus on generating better search queries to enhance RAG performance.
We appreciate reviewer 9WtD bringing our attention to these related works, and we have updated our related works section appropriately. We have added Query2Doc[1] as a baseline in Table 1. To summarize the discussion here: Tree of Clarifications[2] is a promising method, as it performs question clarification after retrieval in order to improve answer generation. Since LeReT mainly focuses on improving retrieval, the work is complementary to our work and Tree of Clarifications could be run on LeReT-improved retrievals. While HyDE seems quite effective, we find that it requires an additional contrastive encoder to find similar documents to the generated hypothetical document. Given that LeReT is targeting the common use case of a black box retriever like the Bing API or Azure AI Search where it is not possible to access an encoder as required by HyDE, it is not possible to compare the two methods. Additionally, the Query2doc baseline already measures the performance gains from hypothetical documents in the black box retriever setting. We would also like to emphasize that LeReT, our reinforcement-learning based framework for improving retrieval, can be combined with these prior works. For example, LeReT could be used to sample hypothetical documents and queries generated by Query2doc or HyDE and fine tune the model to produce better documents and queries. We are excited for future work to explore these directions.
1. Query2doc: Query Expansion with Large Language Models. Liang Wang, Nan Yang, Furu Wei. Empirical Methods in Natural Language Processing (EMNLP) 2023.
2. Tree of Clarifications: Answering Ambiguous Questions with Retrieval-Augmented Large Language Models. Gangwoo Kim, Sungdong Kim, Byeongguk Jeon, Joonsuk Park, Jaewoo Kang. Empirical Methods in Natural Language Processing (EMNLP) 2023.
3. Precise Zero-Shot Dense Retrieval without Relevance Labels. Luyu Gao, Xueguang Ma, Jimmy Lin, Jamie Callan. Association for Computational Linguistics (ACL) Anthology, 2023.
> Relying on annotated golden documents, referred to as "direct supervision" in this work, limits the vision of the study. In more general scenarios, collecting "indirect supervision" is more feasible. Moreover, signals from "indirect supervision" are the ultimate indicators for downstream tasks.
We agree that using LeReT with indirect supervision would allow the method to be used in more general scenarios. However, we find in the data scaling curves in Appendix A.1 that relatively few data points are needed to achieve a lot of the performance gains, so even with limited data LeReT is likely to be effective. In addition, the trade-off in feasibility between collecting “indirect supervision” and “direct supervision” is often not clear. There are scenarios where collecting direct supervision by judging between two sets of documents might be easier than collecting indirect supervision by comparing the generated answers. For example, annotators could judge whether a LLM is sourcing medical advice from reliable sites without necessarily having the medical knowledge to evaluate the generated medical information.