Skip to content

Add LFM2.5-Embedding-350M dense bi-encoder support#67

Open
franckverrot wants to merge 1 commit into
Blaizzy:mainfrom
franckverrot:add-lfm2.5-embedding
Open

Add LFM2.5-Embedding-350M dense bi-encoder support#67
franckverrot wants to merge 1 commit into
Blaizzy:mainfrom
franckverrot:add-lfm2.5-embedding

Conversation

@franckverrot

Copy link
Copy Markdown

Extend the existing lfm2.py (previously ColBERT-only) to support the LiquidAI/LFM2.5-Embedding-350M dense bi-encoder, which shares model_type "lfm2".

The dense variant is detected via the presence of 1_Pooling/config.json and differs from the late-interaction ColBERT variant in three ways:

  • CLS pooling (via pool_by_config) instead of mean pooling
  • no 1_Dense projection; outputs the raw 1024-dim hidden state
  • bidirectional attention with a non-causal key-padding mask

The bidirectional models use a centered short convolution over t-1..t+1, whereas mlx_lm's generative ShortConv left-pads causally, so had to swap a NonCausalShortConv into the conv layers for the dense variant. Verified we still produce embeddings numerically identical to the reference implementation.

AI (Opus 4.8) was used to assist in the refactor/debugging.

Extend the existing lfm2.py (previously ColBERT-only) to support the
LiquidAI/LFM2.5-Embedding-350M dense bi-encoder, which shares model_type
"lfm2".

The dense variant is detected via the presence of 1_Pooling/config.json and
differs from the late-interaction ColBERT variant in three ways:

- CLS pooling (via pool_by_config) instead of mean pooling
- no 1_Dense projection; outputs the raw 1024-dim hidden state
- bidirectional attention with a non-causal key-padding mask

The bidirectional models use a centered short convolution over t-1..t+1,
whereas mlx_lm's generative ShortConv left-pads causally, so had to swap a
NonCausalShortConv into the conv layers for the dense variant. Verified we
still produce embeddings numerically identical to the reference implementation.

AI (Opus 4.8) was used to assist in the refactor/debugging.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant