REVIEW 3 major objections 6 minor 3 cited by
O1 Embedder: Let Retrievers Think Before Action
T0 review · 3 major / 6 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read This paper proposes O1 Embedder, a dense retriever that first generates retrieval-oriented thoughts about a query and then embeds the thought-augmented query, reporting consistent gains over strong baselines on 12 datasets.
desk verdict Useful empirical paper on trainable query expansion for dense retrieval; the thinking claim is overstated but the gains and ablations hold up. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing piece is the thought-augmented query embedding: the model writes k thoughts for a query, encodes query plus thought for each, and mean-pools the vectors before matching against document embeddings. Training rests on two mechanisms: an exploration-refinement data pipeline, in which an LLM generates candidate thoughts and a retrieval committee scores each candidate against the ground-truth document and selects the majority-vote winner as the training target; and multi-task fine-tuning, which combines a generation loss (behavior cloning of the chosen thought) with a composite contrastive loss over both the plain query and the thought-augmented query. A dedicated <emb> token is appended after the generation-stopping token so the embedding objective does not collapse the generation task.
What would settle it
Train the same O1 Embedder pipeline but select training thoughts by retrieval-committee score while masking out any candidate thought whose tokens substantially overlap the ground-truth document; if the zero-shot BEIR gains collapse to near the no-thinking baseline while in-domain gains survive, the committee score is rewarding paraphrase rather than transferable reasoning.
Extended reading notes
Core claim
On its own terms, the paper's discovery is that a pre-trained LLM can be fine-tuned to do both jobs at once: generate retrieval-utility thoughts for a query and embed the query together with those thoughts into one dense vector. The authors report that this thought-augmented embedding beats strong LLM-based baselines on MS MARCO, TREC DL19/DL20, and all nine out-of-domain sets they test, including HotPotQA and CosQA, and that the thinking component is responsible for most of the gain. The paper also demonstrates that jointly training the two capabilities matters: using an external thought generator with an already-trained retriever yields inconsistent results, whereas the jointly trained model improved on every dataset.
Load-bearing premise
The load-bearing premise is that a retriever's similarity score between a candidate thought and the ground-truth document measures how useful that thought is for retrieval; if that score mainly rewards thoughts that restate the answer, the training signal may teach answer regurgitation instead of transferable reasoning.
Editorial extensions
If this is right
- A single fine-tuned model can both generate retrieval thoughts and embed thought-augmented queries, so retrieval systems can add a slow-thinking stage without a separate generator module.
- The thinking operation contributes most on tasks that need multi-hop or code reasoning, which is where direct semantic matching falls short.
- Joint training of generation and contrastive learning is what makes thoughts usable; bolting an external thought generator onto a fixed retriever does not reliably help.
- The training recipe transfers across backbone LLMs of different families and sizes, with performance roughly tracking model scale.
Reading between the lines
- A direct test of whether the committee teaches transferable reasoning rather than answer paraphrasing would be to edit selected thoughts to remove n-gram overlap with the target document and re-measure zero-shot gains.
- The same thought-augmented retrieval could be combined with instruction-tuned retrievers or iterative multi-round thinking, since the aggregation step currently uses simple mean pooling.
- Generated thoughts could double as human-readable explanations for why a query retrieved what it did, which is a debugging affordance the paper does not explore.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes O1 Embedder, a dense retrieval model built on a pre-trained LLM that generates one or more 'thoughts' for an input query before producing a thought-augmented embedding for retrieval. The method has two main components: (1) a data synthesis pipeline in which an LLM generates candidate thoughts and a retrieval committee selects the most useful one by similarity to the gold document under majority voting, and (2) a multi-task training procedure that combines behavior-cloning generation loss with contrastive retrieval loss, using a separate <emb> token for embeddings. The model is trained on MS MARCO and evaluated on MS MARCO dev, TREC DL19/DL20, and nine BEIR datasets, reporting consistent improvements over RepLLaMA and Promptriever in both in-domain and zero-shot settings.
Significance. If the reported results are reliable, O1 Embedder is a practical extension of LLM-based dense retrieval: it shows consistent gains across diverse benchmarks without task-specific fine-tuning, and the joint training design (shared encoding, separate embedding token, composite contrastive loss) is a useful technical contribution. The paper also provides a clear, reproducible-looking data production workflow based on an LLM teacher and a retrieval committee. However, the stronger claim that the model acquires a general 'slow-thinking' reasoning capability is not yet supported: the thought-selection criterion is based on similarity to the gold document, and the provided case study shows the selected thought closely paraphrases the answer, leaving open that the mechanism is answer regurgitation rather than transferable reasoning. The absence of code, data, key hyperparameters, and significance tests further limits the strength of the conclusions.
major comments (3)
- [Section 3.2 and Table 5] The retrieval committee selects the 'golden' thought by taking each retriever's argmax similarity sigma_r(t_i,d) to the ground-truth document d, and the Table 5 case study shows that the selected thought ('admitted to Morehouse College at age 15') is nearly a restatement of the answer in the positive document. This operationalizes retrieval utility as proximity to the target passage, so the model may be learning to generate answer-like text rather than transferable reasoning. The claim that O1 Embedder provides a 'slow-thinking' reasoning capability is therefore not established by the current evidence; the method could be viewed as a well-engineered HyDE variant with a distilled answer generator. Please add an ablation comparing against HyDE with the same teacher LLM (without committee filtering) and an analysis of whether the selected thoughts contain reasoning steps beyond answer extraction, particularly for multi-hop queries. If the gains are largely attributable to answer paraphrase, the writing should be revised to avoid overclaiming the reasoning contribution.
- [Section 4.1.3 and Eq. (10)] The loss weight lambda in Eq. (10), the number of candidate thoughts k used in data production (Section 3.2) and inference (Section 3.4), and the number of in-context examples m in Eq. (4) are not reported. Because the paper states that code and data will be made publicly available but does not currently supply them, these hyperparameters are essential for reproducibility and for assessing whether the main results are sensitive to their values. Please report these values, together with the decoding temperature used for thought generation at inference.
- [Table 2] On several BEIR datasets the improvements over the strongest baseline are small (e.g., +0.9 nDCG@10 on TREC-COVID, +1.7 on FiQA, and +1.8 on SciFact relative to Promptriever), and no significance tests or variance estimates are provided. Given the paper's claim of 'substantial improvements' across 12 datasets, please add significance testing (e.g., paired bootstrap over queries) or run-level statistics to confirm that these differences are not within run-to-run noise.
minor comments (6)
- [Throughout] The method name is inconsistently spelled 'Promptriver' (Sections 1, 2.1, 4.1.2) whereas the cited work is 'Promptriever'; please correct.
- [Table 2 and Table 5] There are typos: 'O1 embeder' in Table 2, 'gnenrated' in the Table 5 caption, and 'tamplate' in Algorithm 1; please correct them.
- [Eq. (7)] The summation upper limit in the generation loss appears to be |q_i|+|t_i|, which would include one more token than the thought's |t_i| tokens; please define the indexing explicitly (e.g., j = |q_i|+1, ..., |q_i|+|t_i|−1 or clarify that the special end token is included).
- [Section 4.2.1] The statement 'MRR@10 of 43.1 (+1.9% improvement)' should read '+1.9 points' or '+4.6% relative', as the current phrasing conflates absolute and relative improvements.
- [Section 4.1.1 and Tables 1-2] The description of the 'O1 embedder w/o T' baseline should clarify whether this variant is trained with the same multi-task objective and merely disables thought at inference, or is trained without the generation loss; this affects the interpretation of the 'Impact of Thought' comparison.
- [Appendix D] The equation for attention scores uses variables q_i and k_i that are not defined in the main text; please define them.
Circularity Check
No significant circularity: the held-out retrieval evaluation is external, and the committee-based thought selection in Section 3.2 is a training-label construction choice rather than a test-time prediction.
full rationale
The derivation chain is self-contained. In Section 3.2, candidate thoughts are scored by a retrieval committee using similarity to the gold document d, and the highest-scoring thought becomes the behavior-cloning target; in Eq. (9), the same d is the positive for contrastive learning. This shared use of d is ordinary supervised learning: the training label is derived from the gold document, and the model is then evaluated on unseen queries with no test-set labels used for training or threshold selection. The committee members (BM25, BGE, GTE, Stella) are pre-trained retrievers, not the model being evaluated, so the selection is not defined by the final model's own output. No fitted parameter is renamed a prediction, no uniqueness theorem is imported from prior work, and the paper's self-citations (e.g., BGE, RetroMAE) are background references rather than load-bearing premises. The principal caveat is that 'optimal retrieval utility' is defined operationally by committee similarity to d, making the data-production claim definitional; whether this yields transferable reasoning rather than answer paraphrase is a construct-validity concern, not a circularity of the derivation. The evaluation on MS MARCO dev, TREC DL, and BEIR remains an external, held-out test of the claimed improvements.
Assumptions & free parameters
free parameters (6)
- candidate/retrieval thought count k =
not reported
- in-context example count m =
3
- max thought tokens =
256
- batch size =
64
- hard negatives per query =
15
- loss weight lambda =
not reported
assumptions (6)
- domain assumption Inner-product similarity between query and document embeddings is a sufficient relevance signal for dense retrieval (Eq. 1).
- domain assumption Retrieval committee similarity between a candidate thought and the ground-truth document is a valid proxy for the thought's retrieval utility.
- domain assumption The teacher LLM (Llama-3.1-70B-Instruct) can generate useful candidate thoughts across source and target domains.
- domain assumption The BEIR protocol is a valid zero-shot generalization measure without train/test contamination from the teacher model or retrieval committee.
- ad hoc to paper Using a separate <emb> token prevents interference between the generation and embedding tasks.
- standard math Standard cross-entropy and InfoNCE-style contrastive losses are appropriate training objectives for generation and embedding.
invented entities (1)
-
Retrieval thought (t_i)
Cite this review
Pith. "Pith review of O1 Embedder: Let Retrievers Think Before Action." pith.science (2026). https://pith.science/paper/3YLD3GLM
@misc{pith2026250207555,
author = {Pith},
title = {Pith review of: O1 Embedder: Let Retrievers Think Before Action},
year = {2026},
howpublished = {\url{https://pith.science/paper/3YLD3GLM}},
note = {Machine review of arXiv:2502.07555}
}
read the original abstract
The growing power of large language models (LLMs) has revolutionized how people access and utilize information. Notably, the LLMs excel at performing fine-grained data representation, which facilitates precise retrieval of information. They also generate high-quality answers based on external references, enabling the production of useful knowledge. The recent introduction of reasoning models, like OpenAI O1 and DeepSeek R1, marks another leap forward, highlighting LLMs' ability to think progressively before delivering final answers. This breakthrough significantly improves the ability to address complex tasks, e.g., coding and math proofs. Inspired by this progress, we aim to develop similar capabilities for retrieval models, which hold great promise for tackling critical challenges in the field, including multi-task retrieval, zero-shot retrieval, and tasks requiring intensive reasoning of complex relationships. With this motivation, we propose a novel approach called O1 Embedder, which generates useful thoughts for the input query before making retrieval for the target documents. To realize this objective, we conquer two technical difficulties. First, we design a data synthesis workflow, creating training signals for O1 Embedder by generating initial thoughts from an LLM-expert and subsequently refining them using a retrieval committee. Second, we optimize the training process, enabling a pre-trained model to be jointly fine-tuned to generate retrieval thoughts via behavior cloning and perform dense retrieval through contrastive learning. Our approach is evaluated by comprehensive experiments, where substantial improvements are achieved across 12 popular datasets, spanning both in-domain and out-of-domain scenarios. These results highlight O1 Embedder's remarkable accuracy and generalizability, paving the way for the development of next-generation IR foundation models.
Figures
Forward citations
Cited by 3 Pith papers
-
When Iterative RAG Beats Ideal Evidence: A Diagnostic Study in Scientific Multi-hop Question Answering
On ChemKGMultiHopQA, iterative retrieval-reasoning outperformed oracle gold-context static RAG for all 11 LLMs tested, with gains up to 25.6 percentage points.
-
MemSifter: Offloading LLM Memory Retrieval via Outcome-Driven Proxy Reasoning
MemSifter trains a 4B proxy with an outcome-driven, rank-sensitive RL reward to sift LLM memory, and on eight benchmarks it matches or beats embedding, graph, and long-context baselines.
-
Don't "Overthink" Passage Reranking: Is Reasoning Truly Necessary?
Standard pointwise rerankers beat reasoning-based pointwise rerankers under identical training, and removing the reasoning process at inference partially recovers the gap.
Reference graph
Works this paper leans on
-
[1]
Payal Bajaj, Daniel Campos, Nick Craswell, Li Deng, Jianfeng Gao, Xiaodong Liu, Rangan Majumder, Andrew McNamara, Bhaskar Mitra, Tri Nguyen, Mir Rosenberg, Xia Song, Alina Stoica, Saurabh Tiwary, and Tong Wang. 2018. MS MARCO: A Human Generated MAchine Reading COmprehension Dataset. arXiv:1611.09268 [cs.CL] https://arxiv.org/abs/1611.09268
arXiv 2018
-
[2]
Maciej Besta, Nils Blach, Ales Kubicek, Robert Gerstenberger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, et al. 2024. Graph of thoughts: Solving elaborate problems with large language models. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 38. 17682–17690
2024
-
[3]
Alexander Bondarenko, Maik Fröbe, Meriem Beloucif, Lukas Gienapp, Yamen Ajjour, Alexander Panchenko, Chris Biemann, Benno Stein, Henning Wachsmuth, Martin Potthast, et al . 2020. Overview of Touché 2020: argument retrieval. In Experimental IR Meets Multilinguality, Multimodality, and Interaction: 11th International Conference of the CLEF Association, CLEF...
2020
-
[4]
Jianlv Chen, Shitao Xiao, Peitian Zhang, Kun Luo, Defu Lian, and Zheng Liu. 2024. BGE M3-Embedding: Multi-Lingual, Multi-Functionality, Multi-Granularity Text Embeddings Through Self-Knowledge Distillation. https://doi.org/10.48550/ arXiv.2402.03216 arXiv:2402.03216 [cs]
-
[5]
Lingjiao Chen, Jared Quincy Davis, Boris Hanin, Peter Bailis, Ion Stoica, Matei Zaharia, and James Zou. 2024. Are More LLM Calls All You Need? Towards Scaling Laws of Compound Inference Systems. arXiv:2403.02419 [cs.LG] https: //arxiv.org/abs/2403.02419
arXiv 2024
-
[6]
Nick Craswell, Bhaskar Mitra, Emine Yilmaz, and Daniel Campos. 2021. Overview of the TREC 2020 deep learning track. arXiv:2102.07662 [cs.IR] https://arxiv.org/ abs/2102.07662
arXiv 2021
- [7]
-
[8]
Jacob Devlin. 2018. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805 (2018)
arXiv 2018
Show all 74 references
-
[9]
Guhao Feng, Bohang Zhang, Yuntian Gu, Haotian Ye, Di He, and Liwei Wang
-
[10]
Luyu Gao and Jamie Callan. 2022. Unsupervised Corpus Aware Language Model Pre-training for Dense Passage Retrieval. In Proceedings of the 60th An- nual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), Smaranda Muresan, Preslav Nakov, and Aline ...
2022 doi
-
[11]
Luyu Gao, Xueguang Ma, Jimmy Lin, and Jamie Callan. 2022. Precise zero-shot dense retrieval without relevance labels. arXiv preprint arXiv:2212.10496 (2022)
2022 arXiv
-
[12]
Yunfan Gao, Yun Xiong, Xinyu Gao, Kangxiang Jia, Jinliu Pan, Yuxi Bi, Yi Dai, Jiawei Sun, and Haofen Wang. 2023. Retrieval-augmented generation for large language models: A survey. arXiv preprint arXiv:2312.10997 (2023)
2023 arXiv
-
[13]
Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Ab- hishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, Amy Yang, Angela Fan, Anirudh Goyal, Anthony Hartshorn, Aobo Yang, Archi Mitra, Archie Sravankumar, Artem Korenev, A...
2018 arXiv
-
[14]
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al . 2025. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948 (2025)
2025 arXiv
-
[15]
Faegheh Hasibi, Fedor Nikolaev, Chenyan Xiong, Krisztian Balog, Svein Erik Bratsberg, Alexander Kotov, and Jamie Callan. 2017. DBpedia-Entity v2: A Test Collection for Entity Search. In Proceedings of the 40th International ACM SIGIR Conference on Research and Development in I...
2017
-
[16]
Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya, Trevor Cai, Eliza Rutherford, Diego de Las Casas, Lisa Anne Hendricks, Johannes Welbl, Aidan Clark, et al. 2022. Training compute-optimal large language models. arXiv preprint arXiv:2203.15556 (2022)
2022 arXiv
- [17]
-
[18]
Junjie Huang, Duyu Tang, Linjun Shou, Ming Gong, Ke Xu, Daxin Jiang, Ming Zhou, and Nan Duan. 2021. CoSQA: 20,000+ Web Queries for Code Search and Question Answering. In Proceedings of the 59th Annual Meeting of the Associa- tion for Computational Linguistics and the 11th Inte...
2021
-
[19]
Hamel Husain, Ho-Hsiang Wu, Tiferet Gazit, Miltiadis Allamanis, and Marc Brockschmidt. 2019. CodeSearchNet challenge: Evaluating the state of semantic code search. arXiv preprint arXiv:1909.09436 (2019)
2019 arXiv
-
[20]
Gautier Izacard, Mathilde Caron, Lucas Hosseini, Sebastian Riedel, Piotr Bo- janowski, Armand Joulin, and Edouard Grave. 2022. Unsupervised Dense Information Retrieval with Contrastive Learning. arXiv:2112.09118 [cs.IR] https://arxiv.org/abs/2112.09118
2022 arXiv
-
[21]
Albert Q. Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, De- vendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, Lélio Renard Lavaud, Marie-Anne Lachaux, Pierre Stock, Teven Le Scao, Thibaut Lavril, Thoma...
2023 arXiv
-
[22]
Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. 2020. Scaling laws for neural language models. arXiv preprint arXiv:2001.08361 (2020)
2020 arXiv
-
[23]
Vladimir Karpukhin, Barlas Oğuz, Sewon Min, Patrick Lewis, Ledell Wu, Sergey Edunov, Danqi Chen, and Wen-tau Yih. 2020. Dense passage retrieval for open- domain question answering. arXiv preprint arXiv:2004.04906 (2020)
2020 arXiv
-
[24]
Mei Kobayashi and Koichi Takeda. 2000. Information retrieval on the web. ACM computing surveys (CSUR) 32, 2 (2000), 144–173
2000
-
[25]
Dai, Jakob Uszkoreit, Quoc Le, and Slav Petrov
Tom Kwiatkowski, Jennimaria Palomaki, Olivia Redfield, Michael Collins, Ankur Parikh, Chris Alberti, Danielle Epstein, Illia Polosukhin, Jacob Devlin, Kenton Lee, Kristina Toutanova, Llion Jones, Matthew Kelcey, Ming-Wei Chang, Andrew M. Dai, Jakob Uszkoreit, Quoc Le, and Slav...
2019 doi
-
[26]
Chankyu Lee, Rajarshi Roy, Mengyao Xu, Jonathan Raiman, Mohammad Shoeybi, Bryan Catanzaro, and Wei Ping. 2024. NV-Embed: Improved Techniques for Training LLMs as Generalist Embedding Models. arXiv preprint arXiv:2405.17428 (2024)
2024 arXiv
-
[27]
Hyunji Lee, Sohee Yang, Hanseok Oh, and Minjoon Seo. 2022. Generative Multi- hop Retrieval. arXiv:2204.13596 [cs.IR] https://arxiv.org/abs/2204.13596
2022 arXiv
-
[28]
Chaofan Li, Zheng Liu, Shitao Xiao, Yingxia Shao, and Defu Lian. 2024. Llama2Vec: Unsupervised Adaptation of Large Language Models for Dense Retrieval. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , Lun-Wei ...
2024 doi
-
[29]
Chaofan Li, MingHao Qin, Shitao Xiao, Jianlyu Chen, Kun Luo, Yingxia Shao, Defu Lian, and Zheng Liu. 2024. Making text embedders few-shot learners. arXiv preprint arXiv:2409.15700 (2024)
2024 arXiv
- [30]
-
[31]
Lei Li, Xiangxu Zhang, Xiao Zhou, and Zheng Liu. 2024. AutoMIR: Ef- fective Zero-Shot Medical Information Retrieval without Relevance Labels. arXiv:2410.20050 [cs.IR] https://arxiv.org/abs/2410.20050
2024 arXiv
-
[32]
Xiangyang Li, Kuicai Dong, Yi Quan Lee, Wei Xia, Yichun Yin, Hao Zhang, Yong Liu, Yasheng Wang, and Ruiming Tang. 2024. CoIR: A Comprehensive Benchmark for Code Information Retrieval Models. arXiv:2407.02883 [cs.IR] https://arxiv.org/abs/2407.02883
2024 arXiv
-
[33]
Zehan Li, Xin Zhang, Yanzhao Zhang, Dingkun Long, Pengjun Xie, and Meishan Zhang. 2023. Towards general text embeddings with multi-stage contrastive learning. arXiv preprint arXiv:2308.03281 (2023)
2023 arXiv
-
[34]
Yinhan Liu. 2019. Roberta: A robustly optimized bert pretraining approach.arXiv preprint arXiv:1907.11692 364 (2019)
2019 arXiv
-
[35]
Zheng Liu, Shitao Xiao, Yingxia Shao, and Zhao Cao. 2023. RetroMAE-2: Duplex Masked Auto-Encoder For Pre-Training Retrieval-Oriented Language Models. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), Anna Rogers...
2023 doi
-
[36]
Zheng Liu, Yujia Zhou, Yutao Zhu, Jianxun Lian, Chaozhuo Li, Zhicheng Dou, Defu Lian, and Jian-Yun Nie. 2024. Information Retrieval Meets Large Language Models. In Companion Proceedings of the ACM Web Conference 2024 (Singapore, Singapore) (WWW ’24). Association for Computing ...
2024
-
[37]
Kun Luo, Minghao Qin, Zheng Liu, Shitao Xiao, Jun Zhao, and Kang Liu. 2024. Large language models as foundations for next-gen dense retrieval: A compre- hensive empirical assessment. arXiv preprint arXiv:2408.12194 (2024)
2024 arXiv
-
[38]
Xueguang Ma, Liang Wang, Nan Yang, Furu Wei, and Jimmy Lin. 2024. Fine- Tuning LLaMA for Multi-Stage Text Retrieval. In Proceedings of the 47th Inter- national ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR ’24) . Association for Computing Mac...
2024
-
[39]
Macedo Maia, Siegfried Handschuh, André Freitas, Brian Davis, Ross McDermott, Manel Zarrouk, and Alexandra Balahur. 2018. Www’18 open challenge: financial opinion mining and question answering. In Companion proceedings of the the web conference 2018. 1941–1942
2018
- [40]
-
[41]
Jianmo Ni, Chen Qu, Jing Lu, Zhuyun Dai, Gustavo Hernandez Abrego, Ji Ma, Vincent Zhao, Yi Luan, Keith Hall, Ming-Wei Chang, and Yinfei Yang. 2022. Large Dual Encoders Are Generalizable Retrievers. InProceedings of the 2022 Conference on Empirical Methods in Natural Language P...
2022 doi
-
[42]
Yingqi Qu, Yuchen Ding, Jing Liu, Kai Liu, Ruiyang Ren, Wayne Xin Zhao, Daxi- ang Dong, Hua Wu, and Haifeng Wang. 2020. RocketQA: An optimized training approach to dense passage retrieval for open-domain question answering. arXiv preprint arXiv:2010.08191 (2020)
2020 arXiv
-
[43]
Nikhil Sardana, Jacob Portes, Sasha Doubov, and Jonathan Frankle. 2023. Beyond chinchilla-optimal: Accounting for inference in language model scaling laws. arXiv preprint arXiv:2401.00448 (2023)
2023 arXiv
-
[44]
Charlie Snell, Jaehoon Lee, Kelvin Xu, and Aviral Kumar. 2024. Scaling llm test- time compute optimally can be more effective than scaling model parameters. arXiv preprint arXiv:2408.03314 (2024)
2024 arXiv
-
[45]
Hongjin Su, Weijia Shi, Jungo Kasai, Yizhong Wang, Yushi Hu, Mari Ostendorf, Wen-tau Yih, Noah A Smith, Luke Zettlemoyer, and Tao Yu. 2022. One embedder, any task: Instruction-finetuned text embeddings. arXiv preprint arXiv:2212.09741 (2022)
2022 arXiv
-
[46]
Hongjin Su, Howard Yen, Mengzhou Xia, Weijia Shi, Niklas Muennighoff, Han-yu Wang, Haisu Liu, Quan Shi, Zachary S Siegel, Michael Tang, et al. 2024. Bright: A realistic and challenging benchmark for reasoning-intensive retrieval. arXiv preprint arXiv:2407.12883 (2024)
2024 arXiv
- [47]
-
[48]
James Thorne, Andreas Vlachos, Christos Christodoulopoulos, and Arpit Mittal
-
[49]
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yas- mine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhos- ale, Dan Bikel, Lukas Blecher, Cristian Canton Ferrer, Moya Chen, Guillem Cucu- rull, David Esiobu, Jude Fernandes, Jeremy...
2023 arXiv
-
[50]
Hersh, Kyle Lo, Kirk Roberts, Ian Soboroff, and Lucy Lu Wang
Ellen Voorhees, Tasmeer Alam, Steven Bedrick, Dina Demner-Fushman, William R. Hersh, Kyle Lo, Kirk Roberts, Ian Soboroff, and Lucy Lu Wang. 2021. TREC-COVID: constructing a pandemic information retrieval test collection. SI- GIR Forum 54, 1, Article 1 (Feb. 2021), 12 pages. ht...
2021 doi
-
[51]
David Wadden, Shanchuan Lin, Kyle Lo, Lucy Lu Wang, Madeleine van Zuylen, Arman Cohan, and Hannaneh Hajishirzi. 2020. Fact or Fiction: Verifying Scientific Claims. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP) , Bonnie Webber...
2020 doi
-
[52]
Liang Wang, Nan Yang, Xiaolong Huang, Binxing Jiao, Linjun Yang, Daxin Jiang, Rangan Majumder, and Furu Wei. 2022. Text embeddings by weakly-supervised contrastive pre-training. arXiv preprint arXiv:2212.03533 (2022)
2022 arXiv
- [53]
- [54]
-
[55]
Liang Wang, Nan Yang, Xiaolong Huang, Linjun Yang, Rangan Majumder, and Furu Wei. 2023. Improving Text Embeddings with Large Language Models.arXiv preprint arXiv:2401.00368 (2023)
2023 arXiv
-
[56]
Cong Wei, Yang Chen, Haonan Chen, Hexiang Hu, Ge Zhang, Jie Fu, Alan Ritter, and Wenhu Chen. 2024. Uniir: Training and benchmarking universal multimodal information retrievers. In European Conference on Computer Vision . Springer, 387–404
2024
-
[57]
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems 35 (2022), 24824–24837
2022
- [58]
-
[59]
Yangzhen Wu, Zhiqing Sun, Shanda Li, Sean Welleck, and Yiming Yang. 2024. Inference Scaling Laws: An Empirical Analysis of Compute-Optimal Inference for LLM Problem-Solving. In The 4th Workshop on Mathematical Reasoning and AI at NeurIPS’24
2024
-
[60]
Shitao Xiao, Zheng Liu, Yingxia Shao, and Zhao Cao. 2022. RetroMAE: Pre- Training Retrieval-oriented Language Models Via Masked Auto-Encoder. In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, Yoav Goldberg, Zornitsa Kozareva, and Yue Zh...
2022 doi
-
[61]
Shitao Xiao, Zheng Liu, Peitian Zhang, Niklas Muennighoff, Defu Lian, and Jian-Yun Nie. 2024. C-Pack: Packed Resources For General Chinese Embeddings. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval. ACM, Washi...
2024
- [62]
-
[63]
Zhilin Yang, Peng Qi, Saizheng Zhang, Yoshua Bengio, William W Cohen, Ruslan Salakhutdinov, and Christopher D Manning. 2018. HotpotQA: A dataset for di- verse, explainable multi-hop question answering. arXiv preprint arXiv:1809.09600 (2018)
2018 arXiv
-
[64]
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. 2024. Tree of thoughts: Deliberate problem solving with large language models. Advances in Neural Information Processing Systems 36 (2024)
2024
-
[65]
Peitian Zhang, Shitao Xiao, Zheng Liu, Zhicheng Dou, and Jian-Yun Nie
-
[66]
Siyun Zhao, Yuqing Yang, Zilong Wang, Zhiyuan He, Luna K Qiu, and Lili Qiu
-
[67]
Wayne Xin Zhao, Jing Liu, Ruiyang Ren, and Ji-Rong Wen. 2024. Dense text retrieval based on pretrained language models: A survey. ACM Transactions on Information Systems 42, 4 (2024), 1–60
2024
-
[68]
Junjie Zhou, Zheng Liu, Shitao Xiao, Bo Zhao, and Yongping Xiong. 2024. VISTA: Visualized Text Embedding For Universal Multi-Modal Retrieval. arXiv preprint arXiv:2406.04292 (2024)
2024 arXiv
-
[69]
Yutao Zhu, Huaying Yuan, Shuting Wang, Jiongnan Liu, Wenhan Liu, Chenlong Deng, Haonan Chen, Zheng Liu, Zhicheng Dou, and Ji-Rong Wen. 2023. Large lan- guage models for information retrieval: A survey. arXiv preprint arXiv:2308.07107 (2023)
2023
-
[70]
arXiv preprint arXiv:2409.14924 (2024)
Retrieval augmented generation (rag) and beyond: A comprehensive sur- vey on how to make your llms use external data more wisely. arXiv preprint arXiv:2409.14924 (2024)
2024 arXiv
-
[74]
Don’t repeat the query, just give the response
Yutao Zhu, Huaying Yuan, Shuting Wang, Jiongnan Liu, Wenhan Liu, Chenlong Deng, Haonan Chen, Zheng Liu, Zhicheng Dou, and Ji-Rong Wen. 2024. Large Language Models for Information Retrieval: A Survey. https://doi.org/10.48550/ arXiv.2308.07107 arXiv:2308.07107 [cs]. Conference ...
2024 doi
-
[2018]
FEVER: a Large-scale Dataset for Fact Extraction and VERification. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers), Marilyn Walker, Heng Ji, and Amanda Ste...
2018
-
[2023]
arXiv preprint arXiv:2310.07554 (2023)
Retrieve anything to augment large language models. arXiv preprint arXiv:2310.07554 (2023)
2023
-
[2024]
Advances in Neural Information Processing Systems 36 (2024)
Towards revealing the mystery behind chain of thought: a theoretical perspective. Advances in Neural Information Processing Systems 36 (2024)
2024
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.