LateOn-hpool-regularized
is a ColBERT-style multi-vector retrieval model trained by
LightOn
using
PyLate
. It is built on the LateOn family and regularized specifically to make
hierarchical pooling
much more effective.
Late interaction models are powerful because they store one embedding per document token and score with MaxSim. The downside is index size: long documents require many vectors. We previously introduced
hierarchical pooling
to reduce this footprint by clustering and merging similar token embeddings inside each document. This model is trained so that such pooling preserves retrieval quality even at aggressive compression ratios.
The headline result is simple:
LateOn-hpool-regularized reaches 98.7% retention at a 32-token document budget, corresponding to roughly 5× compression, with negligible impact on full-token retrieval performance.
This model is the recommended LateOn checkpoint when you want to use ColBERT retrieval with a smaller index footprint through hierarchical pooling. If you only use full-token PLAID retrieval without pooling,
LateOn
or
LateOn-regularized
remain strong choices.
For the complete methodology and analysis, refer to our
blog post
.
Method
Hierarchical pooling contains a discrete operation: cluster assignment. Tokens are merged according to a hierarchical clustering tree, and this assignment is not differentiable. To train through it, we use a Straight-Through Estimator.
During training:
The model encodes query and document tokens normally.
Document token embeddings are hierarchically clustered and pooled in the forward pass.
Retrieval scores are computed on the pooled document representation.
The loss combines the standard full-token MaxSim loss with a pooled-representation loss.
During the backward pass, the Straight-Through Estimator lets gradients flow through the non-differentiable pooling decision.
The total loss is a weighted sum of the full-token MaxSim contrastive loss and the pooled-representation contrastive loss.
In practice, training uses multiple pooling budgets (
[4, 8, 16, 32, 64, 128, 300]
) rather than a single fixed target. This encourages the model to become broadly more poolable instead of overfitting to one compression point.
Important note:
while we converged towards this approach very naturally due to our previous projection work and having introduced the hierarchical pooling approach, it is important to note that an independent researcher (Stefan Josef) did the same kind of study a few months ago. Although we did not have this work in mind while converging back to the idea, we were totally aware of the work and actually chatted with the author during the LIR workshop. Thus, we would like to highlight that the paternity of the idea should be given to Stefan and not to us. You can see these notes as an independent rediscovery, highlighting how much the idea makes sense from the beginning, and most importantly, a scaling up of the study to more data. Stefan is an independent researcher whose compute capacity was limited (as stated in the paper). When scaled to LateOn data, the results become even stronger, so we are happy to share them (alongside the model), but again, please have a look at the
original work
Results
Hierarchical Pooling Retention at 32 Tokens
The table below reports retention at a 32-token document budget, measured against the full-token LateOn reference.
Model / Configuration
Retention @ 32 Tokens
Full NDCG@10
LateOn, no regularization
77.1%
0.506
LateOn-regularized
88.3%
0.508
+ hpool regularization, λ=0.5
94.9%
0.512
+ hpool regularization, λ=0.7
95.8%
0.510
+ hpool regularization, λ=1.0
96.7%
0.507
+ hpool regularization, λ=1.5
97.9%
0.504
The regularization strongly improves pooling retention while preserving full-token retrieval quality. Even at λ=1.5, where the model is optimized aggressively for pooling, full-token performance remains essentially unchanged.
How does this compare to learned pooling?
A fair question: if we're going to train for pooling anyway, why not learn the pooling function itself? The recent
Attention-Guided Clustering (AGC) method
does exactly that, replacing hierarchical clustering with a learned attention mechanism that decides which tokens to merge.
On the 7 BEIR datasets they evaluated, AGC reaches an average retention of
97.4%
at 32 tokens. Our hierarchical pooling regularization at λ=1.5 reaches
97.9%
.
A few caveats: the training data and base model differ, so the comparison is not apples-to-apples. Our base model is also stronger (0.506 vs 0.462 NDCG@10). Take the numbers with a grain of salt, the point is not to claim superiority but to show that a simpler, more flexible method can reach comparable territory.
One important difference though, is that AGC learns a fixed compression budget: it's trained to compress to 32 tokens, and that's what it does. Hierarchical pooling sets the budget at inference time. You can choose to compress more or less your documents with the same model and methodology, to set the quality-storage trade off. You compute the dendogram and put the cut point where you want.
Adaptive Pooling
This flexibility opens up another opportunity: not all documents carry the same density of information. A document that repeats the same concept in different phrasings has highly redundant tokens that can be aggressively merged. A document covering many distinct topics has tokens that are far apart in embedding space and resist compression.
With fixed pooling, every document is compressed to the same number of vectors. With adaptive pooling, easy-to-compress documents receive fewer vectors, while harder documents retain more. The average budget remains the same, but the token allocation becomes more efficient.
Model / Configuration
Pooling Strategy
Retention @ 32 Tokens
hpool regularized, λ=1.5
Fixed budget
97.9%
hpool regularized, λ=1.5
Adaptive budget
98.7%
This gives the final operating point:
98.7% retention at approximately 5× compression.
Cumulative Improvement
Step
Retention @ 32 Tokens
Improvement
Method
LateOn, no regularization
77.1%
—
Base model
+ MUVERA-style regularization
88.3%
+11.2 pp
General geometry regularization
+ hpool regularization, λ=0.5
94.9%
+6.6 pp
Pooling-specific regularization
+ hpool regularization, λ=1.5
97.9%
+3.0 pp
Stronger pooling objective
+ adaptive budgeting
98.7%
+0.8 pp
Adaptive inference-time allocation
Overall, the model improves retention by
21.6 percentage points
at the 32-token compression point. Note that, although the gain from MUVERA regularization seems very large, directly training the base model for hierarchical pooling yields very similar results, although slighlty worse.
When Should You Use This Model?
Use
LateOn-hpool-regularized
if you want a ColBERT with a smaller index and plan to use hierarchical pooling to reduce document vectors while being able to set compression budget at inference time.
Use
LateOn-regularized
instead if your main goal is compatibility with projection-based candidate generation methods such as MUVERA or SMVE.
Use
LateOn
if you only care about full-token PLAID retrieval and do not need pooling or projection-oriented compression.
Related Checkpoints
Model
Description
Link
LateOn-hpool-regularized
STE-regularized for hierarchical pooling and reduced index footprint
@misc{chaffin2026hpoolregularization,
title={After the party comes the free lunch: regularizing ColBERT models to enhance pooling capabilities and reduce index footprint},
author={Chaffin, Antoine},
year={2026},
howpublished={\url{https://huggingface.co/blog/lightonai/lateon-hpool-regularization}},
}
Learn to Pool
@inproceedings{learntopool,
author = {Stefan Josef},
title = {Learn to Pool: Lightweight Fine-Tuning for Flexible Multi-Vector Compression},
booktitle = {Proceedings the 1st Late Interaction Workshop (LIR) @ ECIR 2026},
year = {2025},
}
LateOn Regularization
@misc{chaffin2026lateonregularization,
title={Party is over: regularizing ColBERT models to fix efficient ANN methods},
author={Chaffin, Antoine},
year={2026},
howpublished={\url{https://huggingface.co/blog/lightonai/lateon-regularization}},
}
Hierarchical Pooling
@misc{clavie2024reducingfootprintmultivectorretrieval,
title={Reducing the Footprint of Multi-Vector Retrieval with Minimal Performance Impact via Token Pooling},
author={Benjamin Clavié and Antoine Chaffin and Griffin Adams},
year={2024},
eprint={2409.14683},
archivePrefix={arXiv},
primaryClass={cs.IR},
url={https://arxiv.org/abs/2409.14683},
}
DenseOn and LateOn
@misc{sourty2026denseonlateon,
title={DenseOn with the LateOn: Open State-of-the-Art Single and Multi-Vector Models},
author={Sourty, Raphael and Chaffin, Antoine and Weller, Orion and Demoura, Paulo and Chatelain, Amelie},
year={2026},
howpublished={\url{https://huggingface.co/blog/lightonai/denseon-lateon}},
}
PyLate
@inproceedings{DBLP:conf/cikm/ChaffinS25,
author = {Antoine Chaffin and Raphaël Sourty},
title = {PyLate: Flexible Training and Retrieval for Late Interaction Models},
booktitle = {Proceedings of the 34th ACM International Conference on Information and Knowledge Management},
year = {2025},
url = {https://github.com/lightonai/pylate},
doi = {10.1145/3746252.3761608},
}
Runs of lightonai LateOn-hpool-regularized on huggingface.co
163
Total runs
0
24-hour runs
19
3-day runs
-12
7-day runs
-160
30-day runs
More Information About LateOn-hpool-regularized huggingface.co Model
LateOn-hpool-regularized huggingface.co is an AI model on huggingface.co that provides LateOn-hpool-regularized's model effect (), which can be used instantly with this lightonai LateOn-hpool-regularized model. huggingface.co supports a free trial of the LateOn-hpool-regularized model, and also provides paid use of the LateOn-hpool-regularized. Support call LateOn-hpool-regularized model through api, including Node.js, Python, http.
LateOn-hpool-regularized huggingface.co is an online trial and call api platform, which integrates LateOn-hpool-regularized's modeling effects, including api services, and provides a free online trial of LateOn-hpool-regularized, you can try LateOn-hpool-regularized online for free by clicking the link below.
lightonai LateOn-hpool-regularized online free url in huggingface.co:
LateOn-hpool-regularized is an open source model from GitHub that offers a free installation service, and any user can find LateOn-hpool-regularized on GitHub to install. At the same time, huggingface.co provides the effect of LateOn-hpool-regularized install, users can directly use LateOn-hpool-regularized installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
LateOn-hpool-regularized install url in huggingface.co: