CoolFace
Modelpublic

sahilchachra/LFM2.5-Embedding-350M-mxfp8

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
0likes20downloads
Model Card

LFM2.5-Embedding-350M-mxfp8 (MLX, mxfp8)

MLX mxfp8 (group_size=32, 8-bit) quantization of `LiquidAI/LFM2.5-Embedding-350M`, a bidirectional LFM2.5 dense bi-encoder (1024-d CLS vector) for multilingual retrieval. Runs on Apple Silicon via MLX.

  • —Weights: 366 MB (mxfp8 (group_size=32, 8-bit))
  • —Encode throughput: 13211 tokens/sec (M-series, this benchmark)
  • —Pooling / scoring: CLS token, cosine similarity
  • —Prompts: query: / document: (required — trained with them)

Retrieval quality — English NanoBEIR (4 datasets, 50 queries each)

DatasetNDCG@10 (fp16)NDCG@10 (mxfp8)Recall@10 (fp16)Recall@10 (mxfp8)
NanoNQ0.71350.70910.80000.7900
NanoFiQA20180.56320.57080.64430.6530
NanoSciFact0.74610.76120.85000.8700
NanoNFCorpus0.36450.36380.15830.1574
Mean0.59680.60120.61310.6176

Mean NDCG@10 retention vs fp16: 100.7% (fp16 0.5968 → mxfp8 0.6012). fp16 baseline encode: 14496 tok/s.

Benchmarked on a fixed 4-dataset English NanoBEIR subset to measure the quantization quality delta vs fp16 (not the full multilingual suite — see the base model card for published numbers).

Usage (MLX)

python
# pip install mlx mlx-lm transformers
# This repo bundles `mlx_lfm2_encoder.py` — the bidirectional LFM2 encoder
# (CLS pooling / ColBERT MaxSim) that the stock causal LFM2 loaders do NOT provide.
import mlx.core as mx
from transformers import AutoTokenizer
from mlx_lfm2_encoder import load_model

tok = AutoTokenizer.from_pretrained(".", trust_remote_code=True)
model, _ = load_model(".", head="embedding")     # head: "embedding" or "colbert"

# Asymmetric prompts (REQUIRED — the model was trained with them):
def encode(texts, prefix):
    enc = tok([prefix + t for t in texts], return_tensors="np", padding=True,
              truncation=True, max_length=512)
    out = model(mx.array(enc["input_ids"]), mx.array(enc["attention_mask"]))
    mx.eval(out)
    return out  # (B, 1024) CLS-pooled, L2-normalized

q = encode(["was the nightmare before christmas a disney film"], "query: ")
d = encode(["The Nightmare Before Christmas is a 1993 stop-motion film ..."], "document: ")
scores = (q @ d.T)  # cosine similarity

Why a bundled loader?

These are bidirectional encoders (non-causal attention + non-causal short-conv + CLS pooling). General-purpose causal LFM2 loaders produce wrong embeddings here, so this repo ships mlx_lfm2_encoder.py (validated to cosine ≥ 0.999 against the original transformers model). For the broader MLX embedding ecosystem see mlx-embeddings.

License

Inherits the LFM Open License v1.0 (lfm1.0) from the base model.