Research

The gap between a model and a good answer is context. Mixedbread is an applied research lab working on that gap: embeddings, reranking, late interaction, and the agents that use them. We publish the papers and technical reports behind our models, and we ship what we learn. Models will keep getting smarter. They will still need context, and we are building the infrastructure for it.

Papers

  1. Latent Terms: Dense Retrievers Contain Trivially Extractable BM25-ready Zipfian Vocabularies

    We propose Latent Terms, a method revealing that models trained for dense retrieval, whether single- or multi-vector, learn representations that can trivially be decomposed into retrieval-ready sparse features. When trained on frozen retrievers, Sparse Autoencoders without any retrieval-specific adjustments extract a latent vocabulary with approximately Zipfian collection statistics, directly suitable for classical sparse retrieval scoring via BM25. This approach enables sparse retrieval while requiring no learned expansion objective or sparse retrieval supervision whatsoever, and can be readily applied to any dense retriever. Latent Terms is able to match or outperform single-vector scoring methods from its own base model as well as comparable SPLADE variants. In addition, it substantially outperforms its base model on LIMIT, a task specifically designed to highlight the failures of single-vector retrieval. Overall, our results highlight that neural retrievers contain more expressive and indexable structure than their default scoring functions expose, but that other methods can nonetheless be leveraged.

    arXiv:2605.29384
  2. IncompeBench: A Permissively Licensed, Fine-Grained Benchmark for Music Information Retrieval

    BCXLAS
    Benjamin Clavié,Atoof Shakir,Jonah Turner,Sean Lee,Aamir Shakir,Makoto P. Kato

    Multimodal Information Retrieval has made significant progress in recent years, leveraging the increasingly strong multimodal abilities of deep pre-trained models to represent information across modalities. Music Information Retrieval (MIR), in particular, has considerably increased in quality, with neural representations of music even making its way into everyday life products. However, there is a lack of high-quality benchmarks for evaluating music retrieval performance. To address this issue, we introduce IncompeBench, a carefully annotated benchmark comprising 1,574 permissively licensed, high-quality music snippets, 500 diverse queries, and over 125,000 individual relevance judgements. These annotations were created through the use of a multi-stage pipeline, resulting in high agreement between human annotators and the generated data.

    arXiv:2602.11941
  3. Fantastic (small) Retrievers and How to Train Them: mxbai-edge-colbert-v0 Tech Report

    In this work, we introduce mxbai-edge-colbert-v0 models, at two different parameter counts: 17M and 32M. As part of our research, we conduct numerous experiments to improve retrieval and late-interaction models, which we intend to distill into smaller models as proof-of-concepts. Our ultimate aim is to support retrieval at all scales, from large-scale retrieval which lives in the cloud to models that can run locally, on any device. mxbai-edge-colbert-v0 is a model that we hope will serve as a solid foundation backbone for all future experiments, representing the first version of a long series of small proof-of-concepts. As part of the development of mxbai-edge-colbert-v0, we conducted multiple ablation studies, of which we report the results. In terms of downstream performance, mxbai-edge-colbert-v0 is a particularly capable small model, outperforming ColBERTv2 on common short-text benchmarks (BEIR) and representing a large step forward in long-context tasks, with unprecedented efficiency.

    arXiv:2510.14880
  4. Simple Projection Variants Improve ColBERT Performance

    Multi-vector dense retrieval methods like ColBERT systematically use a single-layer linear projection to reduce the dimensionality of individual vectors. In this study, we explore the implications of the MaxSim operator on the gradient flows of the training of multi-vector models and show that such a simple linear projection has inherent, if non-critical, limitations in this setting. We then discuss the theoretical improvements that could result from replacing this single-layer projection with well-studied alternative feedforward linear networks (FFN), such as deeper, non-linear FFN blocks, GLU blocks, and skip-connections, could alleviate these limitations. Through the design and systematic evaluation of alternate projection blocks, we show that better-designed final projections positively impact the downstream performance of ColBERT models. We highlight that many projection variants outperform the original linear projections, with the best-performing variants increasing average performance on a range of retrieval benchmarks across domains by over 2 NDCG@10 points. Finally, we observe that this effect is consistent across random seeds, further confirming that replacing the linear layer of ColBERT models is a robust, drop-in upgrade.

    arXiv:2510.12327
  5. ProRank: Prompt Warmup via Reinforcement Learning for Small Language Models Reranking

    ASRHJLBC
    Xianming Li,Aamir Shakir,Rui Huang,Tsz-fung Andrew Lee,Julius Lipp,Benjamin Clavié,Jing Li

    Reranking is fundamental to information retrieval and retrieval-augmented generation, with recent Large Language Models (LLMs) significantly advancing reranking quality. Most current works rely on large-scale LLMs (>7B parameters), presenting high computational costs. Small Language Models (SLMs) offer a promising alternative because of computational efficiency. However, our preliminary quantitative analysis reveals key limitations of SLMs: their representation space is narrow, leading to reduced expressiveness, and they struggle with understanding task prompts without fine-tuning. To address these issues, we introduce a novel two-stage training approach, ProRank, for SLM-based document reranking. We propose using reinforcement learning to improve the understanding of task prompts. Additionally, we introduce fine-grained score learning to enhance representation expressiveness and further improve document reranking quality. Extensive experiments suggest that ProRank consistently outperforms both the most advanced open-source and proprietary reranking models. Notably, our 0.5B ProRank even surpasses powerful LLM reranking models on the BEIR benchmark, establishing that properly trained SLMs can achieve superior document reranking performance while maintaining computational efficiency.

    arXiv:2506.03487
  6. BMX: Entropy-weighted Similarity and Semantic-enhanced Lexical Search

    JLASRH
    Xianming Li,Julius Lipp,Aamir Shakir,Rui Huang,Jing Li

    BM25, a widely-used lexical search algorithm, remains crucial in information retrieval despite the rise of pre-trained and large language models (PLMs/LLMs). However, it neglects query-document similarity and lacks semantic understanding, limiting its performance. We revisit BM25 and introduce BMX, a novel extension of BM25 incorporating entropy-weighted similarity and semantic enhancement techniques. Extensive experiments demonstrate that BMX consistently outperforms traditional BM25 and surpasses PLM/LLM-based dense retrieval in long-context and real-world retrieval benchmarks. This study bridges the gap between classical lexical search and modern semantic approaches, offering a promising direction for future information retrieval research. The reference implementation of BMX can be found in Baguetter, which was created in the context of this work.

    arXiv:2408.06643

From the blog

  1. Introducing Toast 1

    Meet Toast 1, Mixedbread's search agent for knowledge-intensive tasks, matching or outperforming Claude Opus 5 and GPT-5.6 Sol while being up to 10× cheaper and 12× faster.

  2. mxbai-rerank-v3.1-listwise

    Meet listwise v3.1, a small upgrade to listwise v3. Now in Mixedbread Search, matching gpt-5.6-sol (high) quality at 61x lower latency.

  3. Asymmetric Quantization: Near-Lossless Late Interaction Retrieval with 97% Storage Reduction

    Late interaction makes retrieval more precise but turns every document into many vectors. Asymmetric quantization keeps query vectors precise and stores document vectors as binary signs, cutting corpus storage 32x while holding 89.65 vs 90.26 NDCG@10.

  4. Dense Retrievers Know More Than They Can Express

    Demonstrating that dense retrieval models learn much more information than they can express through their usual scoring mechanism: they also contain an indexable, natural-language-like sparse vocabulary, which is plug-and-play with BM25.

  5. Ranking Beyond Binary Relevance: mxbai-rerank-v3-listwise

    Announcing mxbai-rerank-v3-listwise, our new listwise reranker codesigned with Wholembed v3. It improves results on every benchmark we ran, with state-of-the-art instruction following.

  6. Closing the Oracle Gap for Your Agents

    Mixedbread Search v3 narrows the oracle gap for agentic retrieval, topping BrowseComp-Plus and setting leading results on MADQA and OfficeQA-Pro.

  7. Beyond the Limit: Introduce Mixedbread Wholembed v3

    Announcing Mixedbread Wholembed v3, our new unified omnimodal multilingual retrieval model, setting a new state of the art for search across languages, modalities, and real-world retrieval tasks.

  8. Inside Mixedbread: How We Built Multimodal Late-Interaction at Billion Scale

    Technical deep-dive into Mixedbread Search - the first production-ready late-interaction search with native multimodality. Learn how we achieve ~80ms end-to-end latency on billion-scale document collections.

  9. Fantastic (small) Retrievers and How to Train Them: mxbai-edge-colbert-v0

    Introducing our new family of extremely efficient ColBERT models, to serve as backbones for modern late interaction research while outperforming ColBERTv2 with just 17 million parameters.

  10. A Delicious Free Lunch: Better Projections Improve ColBERT

    Discussing the unique learning constraints introduced by the MaxSim operator, and demonstrating that simple architecture improvements to accommodate for these limitations can increase performance in a free-lunch fashion.

  11. Our Research Vision, Part 1

    Introducing our research vision and our ultimate goal: Solving Search. In this blog post, we lay out our view on Mixedbread as a research lab, our approach for prioritizing our research and making it impactful for our journey toward the objective, as well as our thoughts on balancing open- and closed-source research.

  12. maxsim-cpu: Maximising Maxsim Efficiency

    Introducing maxsim-cpu, a much faster way to compute the late interaction's MaxSim operator on modern CPU hardware, optimised for both x86 and Mac ARM.

  13. The Hidden Ceiling: How OCR Quality Limits RAG Performance

    Benchmarking shows OCR errors cap text-based RAG: top OCR still misses 4-5% NDCG@5, while Mixedbread's multimodal vector store beats perfect text by 12% and recovers 70% of lost answer accuracy.

  14. Baked-in Brilliance: Reranking Meets RL with mxbai-rerank-v2

    Introducing mxbai-rerank-v2, the second-generation reranking models from Mixedbread. They're crispier than ever—featuring reinforcement learning, multilingual support, and extended context handling for even better accuracy. They come with the same open-source flexibility under Apache 2.0, now with boosted performance for a more powerful search experience.

  15. Every Byte Matters: Introducing mxbai-embed-xsmall-v1

    Announcing mxbai-embed-xsmall-v1, our smallest and most efficient English embedding model optimised for retrieval tasks. It comes with competitive performance at an extra small footprint, support for long context, binary quantization and Matryoshka representation learning.

  16. BM𝒳: A Freshly Baked Take on BM25

    Introducing BMX, an iteration on the industry standard BM25 search algorithm. Through the incorporation of entropy-weighted query-document similarity and weighted query augmentation, the algorithm can increase search performance on the most relevant information retrieval benchmarks.

  17. Open Source Gets DE-licious: Mixedbread x deepset German/English Embeddings

    Introducing deepset-mxbai-embed-large-v1, a new open-source German/English embedding model, developed through collaboration between deepset and Mixedbread. This model sets a new performance standard among open source peers, supporting binary quantization and Matryoshka representation learning for significant cost reductions. Outperforming domain-specific alternatives in real-world applications, it offers 97%+ infrastructure cost savings through binary MRL.

  18. 64 bytes per embedding, yee-haw 🤠

    Binary MRL combines two popular approaches to deal with the scalability issues of embeddings. It helps our embedding model achieve a 64x gain in efficiency while retaining more than 90% of performance, drastically reducing infrastructure costs and enabling new applications.

  19. ColBERTus Maximus - Introducing mxbai-colbert-large-v1

    mxbai-colbert-large-v1 is a state-of-the-art ColBERT model for reranking and retrieval tasks. It is based on the mxbai-embed-large-v1 model and achieves state-of-the-art performance on 13 publicly available BEIR benchmarks. It's available on Hugging Face.

  20. Open Source Strikes Bread - New Fluffy Embedding Model

    Our English embedding model provides state-of-the-art performance among other efficiently sized models. It outperforms closed source models like OpenAI's text-embedding-v3.

  21. Fresh 2D-Matryoshka Embedding Model

    The 2D-🪆 model introduces a novel approach that enables you to reduce both the number of layers and the dimensions of embeddings within the model. This dual reduction strategy allows for a more compact model size while still delivering competitive performance compared to leading models, such as Nomic's embedding model. Specifically, reducing the model's layers by approximately 50% retains up to 85% of its original performance, even without additional training.

  22. Boost Your Search With The Crispy Mixedbread Rerank Models

    Introducing Mixedbread rerank models - Upgrade your search results with our new, open-source reranking models from Mixedbread. These models, available in three sizes, make it easier to find relevant results by adding a semantic layer to existing search systems. They're simple to use, work with your current setup, and are proven to boost performance with many traditional and semantic search models. Check them out for a more accurate, efficient search experience.