🎯
TL;DR
: First large-scale fully pre-trained ColBERT model using only public data. Achieves
55.43 nDCG@10
on BEIR benchmark, outperforming GTE-ModernColBERT and GTE-ModernBERT trained on closed and stronger data.
New SOTA on BEIR for models <150M parameters
.
Why ColBERT-Zero?
Late interaction (ColBERT / multi-vector) models have clear advantages in out-of-domain generalization, long-context handling, and reasoning-intensive retrieval. Yet they remain undertrained: current state-of-the-art ColBERT models (e.g,
GTE-ModernColBERT
and
ColBERT-small
) are simply built by bolting a small knowledge distillation step onto a strong dense (single-vector) model. Even recent efforts like
mxbai-edge-colbert-v0
perform all early training stages in a single-vector setting, only switching to the multi-vector objective at the very end.
This leaves a lot of performance on the table.
ColBERT-Zero demonstrates that performing contrastive pre-training directly in the multi-vector setting, rather than treating it as an afterthought, unlocks a significantly higher performance ceiling. Trained exclusively on public data (
Nomic-embed
dataset mixture),
ColBERT-Zero
overcomes a 2.4-point data quality disadvantage to outperform models trained on proprietary, closed-source data. For detailed results, please have a look at our
blogpost
and the
paper
. All the
models
(including intermediate checkpoints) as well
training code
are released under an Apache 2.0 license.
Controlled Comparison Design
We deliberately trained on the public
Nomic-embed
data mixture for a strategic reason: Nomic has already trained a dense ModernBERT model (
ModernBERT-embed
) on this exact data. This lets us compare dense vs. multi-vector training with the
same data, same base model (
ModernBERT
), and same pipeline
. The only variable is whether the contrastive phases are performed in the dense or multi-vector setting.
This design reveals a striking result: the dense baseline trained on Nomic data scores 52.89, while the one trained on GTE's proprietary data scores 55.33: a 2.4-point data quality gap. Despite this disadvantage, ColBERT-Zero's full multi-vector pre-training pipeline closes and surpasses this gap, reaching
55.43 nDCG@10
.
The Three-Phase Training Pipeline
The development followed a three-phase pipeline, each providing a different type of learning signal:
Phase 1 - Unsupervised Contrastive Pre-training
We began with the
nomic-embed-unsupervised-data
dataset. Using
PyLate
's
GradCache
implementation to scale per-GPU batch size without VRAM constraints, combined with
cross-GPU gathering
of representations, we reached effective batch sizes of
~16k
, required for unsupervised training to produce plausible in-batch hard negatives. Unlike dense training, the multi-vector objective allows the encoder to learn fine-grained token importance from the very first phase.
Phase 2 - Supervised Contrastive Fine-tuning
We refined the model using the
nomic-embed-supervised-data
. This stage introduced mined hard negatives: documents that are superficially similar to the query but not actually relevant. This allows teaching the model to handle nuance by prioritizing specific keywords and contextual tokens most indicative of a true match.
Phase 3 - Knowledge Distillation (KD)
The final stage used the
ms-marco-en-bge
dataset. We leveraged a powerful Gemma-based model as a teacher, allowing our student models to learn to replicate complex reasoning scores via the efficient MaxSim operator.
Key Findings
1. The Standard Recipe Leaves Performance on the Table
The KD-only approach (the current industry standard) scores 54.09, lagging behind full pre-training by
1.3 points
. A simple distillation step is insufficient for optimal multi-vector performance.
2. Supervised + KD Is the Efficiency Sweet Spot
By running a supervised contrastive step in the multi-vector setting before distillation, we reach
55.12 nDCG@10
, closing most of the gap with the fully pre-trained model (55.43). This costs
~40 GH200-hours instead of ~408
: roughly
10× cheaper for 99.4% of the performance
.
3. Prompt Alignment Is Non-Negotiable
Nomic's base models are pre-trained with asymmetric prompts (
search_query:
and
search_document:
). While ColBERT has its own asymmetric mechanism via
[Q]
and
[D]
markers, we found:
Stripping pre-training prompts during fine-tuning
causes significant performance degradation.
Adding prompts to a model not pre-trained with them
also hurts performance.
Even with perfect alignment
, prompts provide an intrinsic benefit: full ColBERT pre-training with prompts (55.43) vs. without prompts (54.61), no mismatch in either case, shows a meaningful 0.82-point gap.
Why do prompts help?
Our leading hypothesis is that prompt tokens act as
implicit query expansion
: extra slots that don't carry specific meaning but let the model store global information about the sequence. The original ColBERT used
[PAD]
tokens for this purpose, but modern Flash Attention implementations broke this trick (masked tokens no longer produce usable embeddings). Explicit prompt tokens may be quietly re-enabling it.
Practical takeaway:
Always align your prompts with the base model's pre-training setup. Misalignment is one of the easiest ways to silently lose performance. Note that this sensitivity decreases with stronger downstream fine-tuning: with enough training, the model can adapt to an initial mismatch.
Model Lineup
The Main Models (ColBERT-Zero)
ColBERT-Zero
utilizes the full 3-phase pipeline with strict prompt alignment,
achieving 55.43 nDCG@10 on BEIR
, setting a new SOTA for models <150M parameters. We also provide
ColBERT-Zero-noprompts
, the same pipeline without asymmetric prompts, to study the impact of query expansion on multi-vector performance.
The cheap-to-train ones (ModernColBERT-embed-base)
These models represent the practical sweet spot. By skipping the expensive unsupervised phase,
ModernColBERT-embed-base
(Supervised + KD) achieves ~97% of the flagship's performance at only ~10% of the compute cost. For reference,
ModernColBERT-embed-base-kd
performs only the distillation step on a supervised dense base.
Intermediate Checkpoints
For researchers studying the incremental impact of each phase and prompt alignment, we release several ablation variants:
ColBERT-Zero-supervised
,
ColBERT-Zero-unsupervised
(and their
-noprompts
versions), and
ModernColBERT-embed-base-supervised
.
Data-specific findings.
We deliberately used the Nomic Embed data mixture for controlled comparison. Some observations (particularly around prompt sensitivity) may not generalize to different or stronger training configurations.
Scale vs. objective.
The gains from multi-vector pre-training likely reflect
more training time
in the multi-vector setting, rather than the contrastive objective itself. Performing KD alone at a larger scale might yield similar or superior results due to the higher quality of the distillation signal. Our study uses the conventional setup where training scale is inversely proportional to signal quality, reflecting the higher cost of generating high-quality labels.
Prompt sensitivity decreases with stronger fine-tuning.
When experimenting with stronger fine-tuning data (e.g., NV-Retriever), adding prompts on top of a model pre-trained without them did not degrade results the way it did with ColBERT-Zero. With enough downstream training, the model can adapt to an initial mismatch.
Serving at Scale
For production deployment of ColBERT-Zero and other multi-vector models, check out
NextPlaid
and
FastPlaid
, our production-grade engines for multi-vector retrieval.
Resources
📦
All checkpoints:
HF Collection
- every phase, with and without prompts
Use this model with PyLate to index and retrieve documents. The index uses
FastPLAID
for efficient similarity search.
Indexing documents
Load the ColBERT model and initialize the PLAID index, then encode and index your documents:
from pylate import indexes, models, retrieve
# Step 1: Load the ColBERT model
model = models.ColBERT(
model_name_or_path="pylate_model_id",
)
# Step 2: Initialize the PLAID index
index = indexes.PLAID(
index_folder="pylate-index",
index_name="index",
override=True, # This overwrites the existing index if any
)
# Step 3: Encode the documents
documents_ids = ["1", "2", "3"]
documents = ["document 1 text", "document 2 text", "document 3 text"]
documents_embeddings = model.encode(
documents,
batch_size=32,
is_query=False, # Ensure that it is set to False to indicate that these are documents, not queries
show_progress_bar=True,
)
# Step 4: Add document embeddings to the index by providing embeddings and corresponding ids
index.add_documents(
documents_ids=documents_ids,
documents_embeddings=documents_embeddings,
)
Note that you do not have to recreate the index and encode the documents every time. Once you have created an index and added the documents, you can re-use the index later by loading it:
# To load an index, simply instantiate it with the correct folder/name and without overriding it
index = indexes.PLAID(
index_folder="pylate-index",
index_name="index",
)
Retrieving top-k documents for queries
Once the documents are indexed, you can retrieve the top-k most relevant documents for a given set of queries.
To do so, initialize the ColBERT retriever with the index you want to search in, encode the queries and then retrieve the top-k documents to get the top matches ids and relevance scores:
# Step 1: Initialize the ColBERT retriever
retriever = retrieve.ColBERT(index=index)
# Step 2: Encode the queries
queries_embeddings = model.encode(
["query for document 3", "query for document 1"],
batch_size=32,
is_query=True, # # Ensure that it is set to False to indicate that these are queries
show_progress_bar=True,
)
# Step 3: Retrieve top-k documents
scores = retriever.retrieve(
queries_embeddings=queries_embeddings,
k=10, # Retrieve the top 10 matches for each query
)
Reranking
If you only want to use the ColBERT model to perform reranking on top of your first-stage retrieval pipeline without building an index, you can simply use rank function and pass the queries and documents to rerank:
@misc{chaffin2026colbertzeropretrainpretraincolbert,
title = {ColBERT-Zero: To Pre-train Or Not To Pre-train ColBERT models},
author = {Antoine Chaffin and Luca Arnaboldi and Amélie Chatelain and Florent Krzakala},
year = {2026},
eprint = {2602.16609},
archivePrefix = {arXiv},
primaryClass = {cs.CL},
url = {https://arxiv.org/abs/2602.16609},
}
Sentence Transformers
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/1908.10084"
}
PyLate
@inproceedings{DBLP:conf/cikm/ChaffinS25,
author = {Antoine Chaffin and
Rapha{"{e}}l Sourty},
editor = {Meeyoung Cha and
Chanyoung Park and
Noseong Park and
Carl Yang and
Senjuti Basu Roy and
Jessie Li and
Jaap Kamps and
Kijung Shin and
Bryan Hooi and
Lifang He},
title = {PyLate: Flexible Training and Retrieval for Late Interaction Models},
booktitle = {Proceedings of the 34th {ACM} International Conference on Information
and Knowledge Management, {CIKM} 2025, Seoul, Republic of Korea, November
10-14, 2025},
pages = {6334--6339},
publisher = {{ACM}},
year = {2025},
url = {https://github.com/lightonai/pylate},
doi = {10.1145/3746252.3761608},
}
Nomic Embed
@article{DBLP:journals/tmlr/NussbaumMMD25,
author = {Zach Nussbaum and
John Xavier Morris and
Andriy Mulyar and
Brandon Duderstadt},
title = {Nomic Embed: Training a Reproducible Long Context Text Embedder},
journal = {Trans. Mach. Learn. Res.},
volume = {2025},
year = {2025},
url = {https://openreview.net/forum?id=IPmzyQSiQE},
timestamp = {Fri, 20 Jun 2025 14:19:48 +0200},
biburl = {https://dblp.org/rec/journals/tmlr/NussbaumMMD25.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
Runs of lightonai ColBERT-Zero on huggingface.co
2.9K
Total runs
0
24-hour runs
13
3-day runs
-1.4K
7-day runs
771
30-day runs
More Information About ColBERT-Zero huggingface.co Model
ColBERT-Zero huggingface.co is an AI model on huggingface.co that provides ColBERT-Zero's model effect (), which can be used instantly with this lightonai ColBERT-Zero model. huggingface.co supports a free trial of the ColBERT-Zero model, and also provides paid use of the ColBERT-Zero. Support call ColBERT-Zero model through api, including Node.js, Python, http.
ColBERT-Zero huggingface.co is an online trial and call api platform, which integrates ColBERT-Zero's modeling effects, including api services, and provides a free online trial of ColBERT-Zero, you can try ColBERT-Zero online for free by clicking the link below.
lightonai ColBERT-Zero online free url in huggingface.co:
ColBERT-Zero is an open source model from GitHub that offers a free installation service, and any user can find ColBERT-Zero on GitHub to install. At the same time, huggingface.co provides the effect of ColBERT-Zero install, users can directly use ColBERT-Zero installed effect in huggingface.co for debugging and trial. It also supports api for free installation.