Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@
from fastembed.common import OnnxProvider
from fastembed.late_interaction.colbert import Colbert
from fastembed.late_interaction.jina_colbert import JinaColbert
from fastembed.late_interaction.lateon import LateOn
from fastembed.late_interaction.late_interaction_embedding_base import (
LateInteractionTextEmbeddingBase,
)


class LateInteractionTextEmbedding(LateInteractionTextEmbeddingBase):
EMBEDDINGS_REGISTRY: list[Type[LateInteractionTextEmbeddingBase]] = [Colbert, JinaColbert]
EMBEDDINGS_REGISTRY: list[Type[LateInteractionTextEmbeddingBase]] = [
Colbert,
JinaColbert,
LateOn,
]

@classmethod
def list_supported_models(cls) -> list[dict[str, Any]]:
Expand Down
128 changes: 128 additions & 0 deletions fastembed/late_interaction/lateon.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
import string
from typing import Any, Iterable, Type

import numpy as np

from fastembed.common.model_description import DenseModelDescription, ModelSource
from fastembed.common.onnx_model import OnnxOutputContext
from fastembed.common.types import NumpyArray
from fastembed.common.preprocessor_utils import load_tokenizer
from fastembed.common.utils import iter_batch
from fastembed.late_interaction.colbert import Colbert, ColbertEmbeddingWorker


supported_lateon_models: list[DenseModelDescription] = [
DenseModelDescription(
model="lightonai/LateOn",
dim=128,
description=(
"PyLate/ColBERT late-interaction English model based on ModernBERT, "
"300 document tokens, 32 query tokens, 2025 year"
),
license="apache-2.0",
size_in_GB=0.616,
sources=ModelSource(hf="lightonai/LateOn"),
model_file="model.onnx",
additional_files=["onnx_config.json"],
),
]


class LateOn(Colbert):
QUERY_MARKER_TOKEN_ID = 50368
DOCUMENT_MARKER_TOKEN_ID = 50369
QUERY_LENGTH = 32
DOCUMENT_LENGTH = 300
MASK_TOKEN = "[MASK]"

@classmethod
def _get_worker_class(cls) -> Type[ColbertEmbeddingWorker]:
return LateOnEmbeddingWorker

@classmethod
def _list_supported_models(cls) -> list[DenseModelDescription]:
"""Lists the supported LateOn models."""
return supported_lateon_models

def load_onnx_model(self) -> None:
self._load_onnx_model(
model_dir=self._model_dir,
model_file=self.model_description.model_file,
threads=self.threads,
providers=self.providers,
cuda=self.cuda,
device_id=self.device_id,
extra_session_options=self._extra_session_options,
)
self.query_tokenizer, _ = load_tokenizer(model_dir=self._model_dir)

assert self.tokenizer is not None
self.mask_token_id = self.special_token_to_id[self.MASK_TOKEN]
self.pad_token_id = self.mask_token_id
self.skip_list = {
self.tokenizer.encode(symbol, add_special_tokens=False).ids[0]
for symbol in string.punctuation
}
# LateOn's PyLate config uses document_length/query_length including the inserted
# [D]/[Q] prefix token. Configure the tokenizer for the pre-prefix lengths.
self.tokenizer.enable_truncation(max_length=self.DOCUMENT_LENGTH - 1)
self.query_tokenizer.enable_truncation(max_length=self.QUERY_LENGTH - 1)

def _post_process_onnx_output(
self, output: OnnxOutputContext, is_doc: bool = True, **kwargs: Any
) -> Iterable[NumpyArray]:
if is_doc:
yield from super()._post_process_onnx_output(output, is_doc=is_doc, **kwargs)
return

if output.attention_mask is None:
raise ValueError("attention_mask must be provided for query post-processing")

for embedding, attention_mask in zip(output.model_output, output.attention_mask):
# LateOn was exported with do_query_expansion=false, so query embeddings should
# only include non-padding query tokens instead of ColBERT mask-token expansion.
embedding = embedding[attention_mask == 1]
norm = np.linalg.norm(embedding, ord=2, axis=1, keepdims=True)
norm_clamped = np.maximum(norm, 1e-12)
yield embedding / norm_clamped

def token_count(
self,
texts: str | Iterable[str],
batch_size: int = 1024,
is_doc: bool = True,
include_extension: bool = False,
**kwargs: Any,
) -> int:
if is_doc:
return super().token_count(
texts,
batch_size=batch_size,
is_doc=is_doc,
include_extension=include_extension,
**kwargs,
)

if not hasattr(self, "model") or self.model is None:
self.load_onnx_model()

token_num = 0
texts = [texts] if isinstance(texts, str) else texts
assert self.query_tokenizer is not None
for batch in iter_batch(texts, batch_size):
for tokens in self.query_tokenizer.encode_batch(batch):
token_num += sum(tokens.attention_mask)
if include_extension:
token_num += len(batch) # add one [Q] prefix token per query

return token_num


class LateOnEmbeddingWorker(ColbertEmbeddingWorker):
def init_embedding(self, model_name: str, cache_dir: str, **kwargs: Any) -> LateOn:
return LateOn(
model_name=model_name,
cache_dir=cache_dir,
threads=1,
**kwargs,
)
21 changes: 21 additions & 0 deletions tests/test_late_interaction_embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@
[0.0766, 0.0452, -0.2343, -0.183, 0.0058],
]
),
"lightonai/LateOn": np.array(
[
[0.00039, 0.00651, 0.0146, 0.00346, 0.00244],
[-0.0029, 0.00423, 0.00042, 0.02236, 0.00981],
[-0.0287, 0.01159, 0.02401, -0.00312, -0.04338],
[-0.04709, 0.00209, 0.02174, -0.00381, -0.00608],
[-0.02461, -0.02876, 0.03014, -0.0035, -0.00431],
]
),
}

CANONICAL_QUERY_VALUES = {
Expand Down Expand Up @@ -149,6 +158,15 @@
[0.0204, -0.0856, -0.0386, -0.1232, -0.0332],
]
),
"lightonai/LateOn": np.array(
[
[0.00202, -0.02634, 0.00685, 0.00993, 0.03093],
[-0.02321, -0.0226, 0.00356, 0.02836, 0.01729],
[-0.01066, 0.00595, 0.02884, 0.00267, -0.10405],
[-0.10359, -0.06927, 0.03218, 0.05037, -0.03338],
[-0.02992, -0.03874, 0.10582, 0.06303, 0.05831],
]
),
}

_MODELS_TO_CACHE = ("answerdotai/answerai-colbert-small-v1",)
Expand Down Expand Up @@ -296,6 +314,9 @@ def test_get_embedding_size():
model_name = "answerdotai/answerai-ColBERT-small-v1"
assert LateInteractionTextEmbedding.get_embedding_size(model_name) == 96

model_name = "lightonai/LateOn"
assert LateInteractionTextEmbedding.get_embedding_size(model_name) == 128


def test_embedding_size():
is_ci = os.getenv("CI")
Expand Down