GLINT is a SOTA 149M-parameter English late-interaction retriever built from
LateOn-unsupervised. It retains
128-dimensional token embeddings and uses MaxSim retrieval with 32 query tokens and 300
document tokens.
What is new in GLInt?
GLINT is designed around the mismatch between ordinary dense hard-negative mining and a
late-interaction retriever. Dense mining selects documents that are difficult under one pooled
vector; GLINT instead mines negatives under the same token-level MaxSim geometry used at
retrieval time. This exposes lexical, compositional, and localized token matches that a
single-vector miner can miss.
The training recipe has two stages:
supervised fine-tuning with multi-vector (MaxSim) hard negatives;
mixed listwise knowledge distillation over a diverse seven-source hard-negative mixture.
For the second stage, a frozen listwise teacher (jinaai/jina-reranker-v3.5) scores each
32-document candidate set jointly. GLINT distils that ordering with a sharpened listwise KL
objective, while a false-negative-masked InfoNCE term preserves a direct retrieval signal.
Usage
Sentence Transformers
This model can be used with Sentence Transformers as a multi-vector
(ColBERT-style late interaction) retriever via the MultiVectorEncoder:
pip install "sentence-transformers>=6.0.0"
python
1from sentence_transformers import MultiVectorEncoder
23model = MultiVectorEncoder("chungimungi/GLInt")45query ="Which planet is known as the Red Planet?"6documents =[7"Venus is often called Earth's twin because of its similar size and proximity.",8"Mars, known for its reddish appearance, is often referred to as the Red Planet.",9"Jupiter, the largest planet in our solar system, has a prominent red spot.",10"Saturn, famous for its rings, is sometimes mistaken for the Red Planet.",11]1213query_embeddings = model.encode_query(query)14document_embeddings = model.encode_document(documents)15print(query_embeddings.shape, document_embeddings[0].shape)16# torch.Size([12, 128]) torch.Size([18, 128])1718# MaxSim late-interaction scoring (higher is more relevant)19scores = model.similarity(query_embeddings, document_embeddings)20print(scores)21# tensor([[11.6192, 11.7344, 11.6513, 11.7105]], device='cuda:0')
PyLate
python
1from pylate import models
23model = models.ColBERT("chungimungi/GLInt")4query_embeddings = model.encode(["what causes a lunar eclipse?"], is_query=True)5document_embeddings = model.encode(6["A lunar eclipse happens when Earth passes between the Sun and the Moon."],7 is_query=False,8)
Use a late-interaction backend such as PyLate/PLAID for corpus-scale retrieval. Scores are
computed by summing, over query tokens, the maximum similarity to a document token.
The corresponding private training artifacts are in
GLINT-data. It contains the complete
prepared SFT data, the 1,046,009-row seven-source KD mixture, and Jina teacher-score parquet
shards. The repository contains no BEIR evaluation corpus or evaluation labels.
Citation
@misc{aarush2026glint,
title={GLInt: Geometry-Matched Hard Negatives for Late-Interaction Retrieval},
author={Aarush},
year={2026},
howpublished={\url{https://huggingface.co/blog/chungimungi/glint}},
}