Papers for

enterprise search developers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Efficient dense vector search boosts multimodal querying in knowledge graphs

Efficient Dense Vector Search within Knowledge Graph Content Embeddings

Abstract: Knowledge graphs are a core component of today's knowledge infrastructure, supporting reasoning and anchoring knowledge systems to verifiable facts. RDF stores and SPARQL engines fulfill this function, enabling a range of retrieval and inference tasks on structured knowledge. Coupling them with Language Models (LMs) extends RAG toward neurosymbolic reasoning, where structured queries gate or re-rank generative outputs. This line of reasoning requires that SPARQL evaluation natively support tensor operations on dense embeddings, enabling multimodal querying and learned similarity-based ranking to be expressed together with graph-structural constraints. This approach is feasible only if the engine can efficiently perform dense vector search. We present QLever-Unified Indexed Vector Embedding Retrieval (QUIVER), an extension to QLever that adds native support for dense vector retrieval within RDF knowledge graphs. It implements three optimizations: engine-level registration of tensor functions, vocabulary-time parsing of JSON-encoded vectors, and a virtual SERVICE that exposes a vector index inside the query. We propose two new benchmarks: an extension of Berlin Sparql Benchmark (BSBM) with text embeddings and an extension of DBpedia with image embeddings. Against the baselines, vocabulary-time parsing alone yields median speedups of up to 41.9x on BSBM and 20x on DBpedia for single-type ranking; adding an approximate nearest-neighbor index yields speedups of 355x on BSBM and 97.8x on DBpedia. The index further makes cross-modal vector joins on DBpedia feasible in seconds, whereas all non-indexed configurations time out.

Mon 21 SeptDatabases
The gist
Searching large knowledge graphs is important for finding facts and reasoning, but it can be slow with complex data like vectors from language or images. The authors improved an existing system by adding fast methods to search dense vectors inside these graphs, making it possible to quickly combine text, images, and structured data in queries. They also created new tests showing their approach can be tens to hundreds of times faster than before. Their work helps connect traditional knowledge bases with modern AI data for better and faster answers.
Open 2609.24236v1

Mixture-of-experts language models improve search speed and accuracy

Mixture-of-Experts Language Models Can Be Strong and Efficient Retrievers

Abstract: Recent work has shown that fine-tuning decoder-only large language models (LLMs) for retrieval yields strong first-stage retrievers, with effectiveness improving as backbones grow in size. However, every query and document must pass through the full model, so encoding cost increases with model size. Mixture-of-Experts (MoE) LLMs activate only a subset of parameters per token and are widely used to scale generative models, yet remain underexplored as retrievers. We systematically study MoE backbones for retrieval by training MoE and dense LLMs from several families using the same procedure, evaluating them across diverse datasets, and measuring query encoding time under the same serving configuration. We show that MoE retrievers outperform dense retrievers with comparable active parameter counts by up to 3.0 nDCG@10 points on BEIR. One of our strongest MoE retrievers matches an 8B dense retriever with 59% fewer active parameters and 18% lower query encoding time. We further show that the number of experts used for query encoding can be reduced without retraining or re-indexing, retaining more than 99% of retrieval effectiveness while reducing query encoding time by up to 26%. Recent rerankers provide only modest additional gains over strong MoE first stages, which often match or exceed the reranked configurations we evaluate. Together, these results show that MoE LLMs can be strong and efficient first-stage retrievers.

Fri 11 SeptInformation RetrievalComputation and Language
The gist
Searching through large amounts of text quickly and accurately is hard because big language models take a lot of computing power. The authors studied a special kind of model called mixture-of-experts (MoE) that only uses part of its brain when answering, making it faster. They found these MoE models can find relevant information better and more efficiently than regular models of similar size. Also, you can reduce how much of the model is active during search without losing much accuracy. This means MoE models can make searching smarter and quicker at the same time.
Open 2609.13486v1

Visual document retrieval improves by picking tokens after query arrives

Query-Aware Token Budgeting for Efficient Late-Interaction Visual Document Retrieval

Abstract: Late-interaction visual document retrievers preserve fine-grained page evidence by storing many token embeddings per page, but the resulting storage and query-time interaction costs make large-scale deployment expensive. Pooling document tokens before indexing offers a natural remedy, yet static pooling must decide which visual evidence to preserve before the query is known. We study an alternative: a heavily compressed hot-path index generates candidates, after which query-aware token budgeting operates on the original token sets of the shortlisted pages. We formulate this stage-two selection as a budgeted MaxSim coverage problem, show that a clipped version is monotone submodular, and compare coverage-only, cluster-guided, token-wise, and marginal-gain policies. On ten ViDoRe tasks with ColModernVBERT, direct static pooling reduces macro normalized discounted cumulative gain at rank five from 0.6309 without compression to 0.4738 at a thirty-two-fold pool factor. Under the same candidate-generation regime and a pool-factor-eight-equivalent reranking budget, token top-k recovers 93.93 percent of the full-token score, while greedy marginal-gain selection recovers 98.39 percent. Held-out and leave-one-dataset-out evaluations yield positive greedy improvements over token top-k on every dataset. The latency analysis reveals two useful operating points: token top-k for interactive retrieval and the naive greedy implementation as a quality upper envelope. Together, these results show that late-interaction visual retrieval benefits from query-aware allocation rather than query-agnostic pooling alone.

Mon 7 SeptInformation RetrievalArtificial Intelligence
The gist
Finding relevant images of documents quickly is hard because pages store lots of detailed information, which slows things down and uses lots of storage space. The authors study a two-step method: first, they use a small index to pick some promising pages, then they carefully choose which pieces of those pages to look at based on the actual search query. This method chooses tokens (small units of information) smartly, which keeps the search accurate but much faster. Their tests show this adaptive approach works better than just compressing data without considering the query.
Open 2609.07262v1