paper-with-me

Papers

Enhanced Retrieval of Long Documents: Leveraging Fine-Grained Block Representations with Large Language Models

2025-01-28 · Minghan Li, Eric Gaussier, Guodong Zhou

In recent years, large language models (LLMs) have demonstrated exceptional power in various domains, including information retrieval. Most of the previous practices involve leveraging these models to create a single embedding for each query, each passage, or each document individually, a strategy exemplified and used by the Retrieval-Augmented Generation (RAG) framework. While this method has proven effective, we argue that it falls short in fully capturing the nuanced intricacies of document-level texts due to its reliance on a relatively coarse-grained representation. To address this limitation, we introduce a novel, fine-grained approach aimed at enhancing the accuracy of relevance scoring for long documents. Our methodology firstly segments a long document into blocks, each of which is embedded using an LLM, for matching with the query representation. When calculating the relevance score, we aggregate the query-block relevance scores through a weighted sum method, yielding a comprehensive score for the query with the entire document. Despite its apparent simplicity, our experimental findings reveal that this approach outperforms standard representation methods and achieves a significant reduction in embedding generation latency. Moreover, by carefully optimizing pairwise loss functions, superior performances have been achieved.

📄 PDF Abstract BibTeX arXiv:2501.17039

Code (0)

등록된 구현이 없습니다.

Tasks

Information RetrievalRAGRetrievalRetrieval-augmented Generation

Similar Papers 제목 키워드 기반

Model-enhanced Vector Index

2023-09-23 · NeurIPS 2023 11 · Hailin Zhang, Yujing Wang, Qi Chen, Ruiheng Chang 외

Embedding-based retrieval methods construct vector indices to search for document representations that are most similar to the query representations. They are widely used in document retrieval due to low latency and dece…

modelNatural QuestionsQuantizationRetrieval

Pseudo-Relevance Feedback Can Improve Zero-Shot LLM-Based Dense Retrieval

2025-03-19 · Hang Li, Xiao Wang, Bevan Koopman, Guido Zuccon

Pseudo-relevance feedback (PRF) refines queries by leveraging initially retrieved documents to improve retrieval effectiveness. In this paper, we investigate how large language models (LLMs) can facilitate PRF for zero-s…

Passage RetrievalRetrieval

RELexED: Retrieval-Enhanced Legal Summarization with Exemplar Diversity

2025-01-23 · T. Y. S. S. Santosh, Chen Jia, Patrick Goroncy, Matthias Grabmair

This paper addresses the task of legal summarization, which involves distilling complex legal documents into concise, coherent summaries. Current approaches often struggle with content theme deviation and inconsistent wr…

DiversityRetrieval

IterKey: Iterative Keyword Generation with LLMs for Enhanced Retrieval Augmented Generation

2025-05-13 · Kazuki Hayashi, Hidetaka Kamigaito, Shinya Kouda, Taro Watanabe

Retrieval-Augmented Generation (RAG) has emerged as a way to complement the in-context knowledge of Large Language Models (LLMs) by integrating external documents. However, real-world applications demand not only accurac…

RAGRetrievalRetrieval-augmented Generation

RQ-RAG: Learning to Refine Queries for Retrieval Augmented Generation

2024-03-31 · Chi-Min Chan, Chunpu Xu, Ruibin Yuan, Hongyin Luo 외

Large Language Models (LLMs) exhibit remarkable capabilities but are prone to generating inaccurate or hallucinatory responses. This limitation stems from their reliance on vast pretraining datasets, making them suscepti…

In-Context LearningRAGResponse GenerationRetrieval+1