• bitcoinBitcoin(BTC)$63,125.000.99%
  • ethereumEthereum(ETH)$1,702.431.51%
  • tetherTether(USDT)$1.000.12%
  • binancecoinBNB(BNB)$578.720.60%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • rippleXRP(XRP)$1.14-0.60%
  • solanaSolana(SOL)$69.250.95%
  • tronTRON(TRX)$0.3221921.05%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.01-1.47%
  • HyperliquidHyperliquid(HYPE)$70.445.07%
  • dogecoinDogecoin(DOGE)$0.0832031.19%
  • USDSUSDS(USDS)$1.000.01%
  • RainRain(RAIN)$0.0144620.07%
  • leo-tokenLEO Token(LEO)$9.53-0.45%
  • zcashZcash(ZEC)$455.742.12%
  • stellarStellar(XLM)$0.221149-4.26%
  • whitebitWhiteBIT Coin(WBT)$52.120.97%
  • CantonCanton(CC)$0.155117-2.68%
  • cardanoCardano(ADA)$0.1616760.36%
  • moneroMonero(XMR)$310.26-3.99%
  • chainlinkChainlink(LINK)$7.901.14%
  • USD1USD1(USD1)$1.000.04%
  • Ethena USDeEthena USDe(USDE)$1.000.03%
  • LABLAB(LAB)$13.69-19.07%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.59-2.62%
  • daiDai(DAI)$1.00-0.02%
  • bitcoin-cashBitcoin Cash(BCH)$197.750.77%
  • MemeCoreMemeCore(M)$2.890.06%
  • hedera-hashgraphHedera(HBAR)$0.0806491.69%
  • litecoinLitecoin(LTC)$44.122.20%
  • Circle USYCCircle USYC(USYC)$1.130.00%
  • suiSui(SUI)$0.71-0.01%
  • shiba-inuShiba Inu(SHIB)$0.0000052.71%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • nearNEAR Protocol(NEAR)$2.15-0.89%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • crypto-com-chainCronos(CRO)$0.0586311.66%
  • avalanche-2Avalanche(AVAX)$6.04-3.84%
  • tether-goldTether Gold(XAUT)$4,145.89-1.60%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • BittensorBittensor(TAO)$225.04-2.94%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.14-0.62%
  • worldcoin-wldWorldcoin(WLD)$0.621.30%
  • uniswapUniswap(UNI)$3.064.14%
  • pax-goldPAX Gold(PAXG)$4,154.13-1.61%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.058881-0.11%
  • mantleMantle(MNT)$0.530.32%
  • OndoOndo(ONDO)$0.356274-0.78%
  • AsterAster(ASTER)$0.63-1.07%
  • Ripple USDRipple USD(RLUSD)$1.00-0.01%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Liquid AI Introduces LFM2.5-Embedding-350M and LFM2.5-ColBERT-350M: Dense Bi-Encoder and Late-Interaction Models for Fast Multilingual Search Across 11 Languages

June 19, 2026
in AI & Technology
Reading Time: 21 mins read
A A
Liquid AI Introduces LFM2.5-Embedding-350M and LFM2.5-ColBERT-350M: Dense Bi-Encoder and Late-Interaction Models for Fast Multilingual Search Across 11 Languages
ShareShareShareShareShare

This week, Liquid AI released two new retrieval models. They are LFM2.5-ColBERT-350M and LFM2.5-Embedding-350M. Both hold 350M parameters. Both are the first bidirectional members of the LFM family. They build on LFM2.5-350M-Base, released in March. The pair targets fast multilingual and cross-lingual search across 11 languages. Their footprint is small enough to run almost anywhere. Both are available now on Hugging Face under the LFM Open License v1.0.

LFM2.5 Retrievers

The two models share one backbone but represent text differently. LFM2.5-Embedding-350M is a dense bi-encoder. It turns each document into a single vector. Pick it when you want the fastest search and the smallest, cheapest index.

LFM2.5-ColBERT-350M is a late-interaction model. It converts each token into a vector rather than one vector per document. This lets it match queries word-by-word for higher accuracy and better generalization. The trade-off is a larger index. Pick it when accuracy matters more than storage. Its query length is capped at 32 tokens. It can also rerank a first-stage retriever’s results without building an index.

Both target short-context search. Good fits include product catalogs, FAQ knowledge bases, and support docs. Liquid AI positions both as a drop-in replacement for an existing RAG pipeline.

The Architecture Change: Causal to Bidirectional

Both models start from LFM2.5-350M-Base, a mid-trained general-purpose checkpoint. Liquid AI applies a small set of bidirectional patches to the LFM2 architecture. These adapt it from a causal decoder to a bidirectional encoder.

In a causal setup, each token uses only itself and previous tokens. That suits left-to-right generation but is less natural for retrieval. The team replaces the causal attention mask with a bidirectional one. Now every token can attend to both left and right context. They also make the LFM2 short convolutions non-causal. These mix local information symmetrically around each token, not only from the past.

This preserves the LFM2 backbone’s efficiency while producing the full-context representations retrieval needs. Each model has 17 layers: 10 convolution, 6 attention, and 1 pooling or dense. Context length reaches 32,768 tokens, though documents are tuned to 512 tokens. From the shared encoder, the two models differ only in output. Embedding uses CLS-style pooling for one 1024-dim vector. ColBERT keeps 128-dim per-token embeddings for MaxSim late interaction.

Training and Data

Both models follow the same three-stage recipe:

  • Stage one is large-scale contrastive pretraining in English.
  • Stage two is multilingual and cross-lingual distillation from a strong teacher across all 11 languages.
  • Stage three is final fine-tuning on hard-mined negatives.

The Embedding model receives slightly more cross-lingual data than ColBERT. Cross-lingual retrieval emerges more naturally in the late-interaction setup. Training data combines curated internal data with open-source English retrieval datasets. LLM-based translation expands the multilingual and cross-lingual pairs.

Benchmark

Liquid AI evaluated two capabilities. The first is multilingual retrieval with NanoBEIR. The second is cross-lingual open-domain QA with MKQA-11. Both report results across all 11 languages: Arabic, German, English, Spanish, French, Italian, Japanese, Korean, Norwegian, Portuguese, and Swedish.

On average, both models lead their class. Here are the comparison details:

Model Type NanoBEIR ML (NDCG@10) MKQA-11 (Recall@20)
LFM2.5-ColBERT-350M late interaction 0.605 0.694
LFM2.5-Embedding-350M dense 0.577 0.691
Qwen/Qwen3-Embedding-0.6B dense 0.556 0.638
LFM2-ColBERT-350M late interaction 0.540 0.646
Alibaba-NLP/gte-multilingual-base dense 0.528 0.675
lightonai/GTE-ModernColBERT-v1 late interaction 0.489 0.459
BAAI/bge-large-en-v1.5 dense 0.359 0.413

ColBERT leads on both averages. Embedding is close behind on MKQA-11 at 0.691. Both beat Qwen3-Embedding-0.6B, a larger model. The new ColBERT also improves on the earlier LFM2-ColBERT-350M, from 0.540 to 0.605 on NanoBEIR. Liquid AI also notes that NanoBEIR English tracks the more expensive full BEIR. The two stay highly correlated, with NanoBEIR scoring a near-constant ~15% higher. The research team therefore uses NanoBEIR as a practical proxy during training runs.

Latency and Edge Deployment

Liquid AI released GGUF variants for llama.cpp. These let both models run on CPUs, laptops, and edge devices. The figures below use a MacBook Pro M4 Max at FP16. Queries are 32 tokens; documents are 256 tokens.

Model Stage Docs cached p50
LFM2.5-Embedding-350M Query embedding yes 7.3 ms
LFM2.5-ColBERT-350M Query embedding + MaxSim yes 8.2 ms
LFM2.5-ColBERT-350M Query + Doc embedding + MaxSim no 34.3 ms

When document embeddings are pre-computed, median (p50) query latency stays under 10 ms. Encoding documents at query time pushes ColBERT to 34.3 ms. For enterprise scale, Liquid AI also built an internal GPU stack. On an H100 at FP16, it observes latencies as low as 1 ms. Embedding query latency there is 1.5 ms p50.

Use Cases With Examples

  • E-commerce: Search a product catalog across many languages with one index. A shopper types a Korean query and the system surfaces an English product listing. Cross-lingual retrieval makes this work without per-language indexes.
  • FAQ and support knowledge bases: Retrieve the right answer reliably across customer-facing surfaces. A French support question maps to an English help article.
  • On-device semantic search: Search files, emails, and notes locally on consumer hardware. The GGUF build keeps data on the device at near-zero cost.
  • Enterprise knowledge assistants: Retrieve internal legal, financial, and technical documents across languages. ColBERT suits this when answer accuracy outranks index size.

Code: Getting Started

The Embedding model runs through sentence-transformers. Always pass the asymmetric prompts, query: and document:. Omitting them silently degrades retrieval quality.

from sentence_transformers import SentenceTransformer

model = SentenceTransformer(
    "LiquidAI/LFM2.5-Embedding-350M",
    trust_remote_code=True,
)

queries = ["What is the capital of France?"]
documents = ["Paris is the capital and largest city of France."]

q_emb = model.encode(queries,   prompt_name="query",    normalize_embeddings=True)
d_emb = model.encode(documents, prompt_name="document", normalize_embeddings=True)

scores = q_emb @ d_emb.T  # shape: (n_queries, n_documents)

The ColBERT model runs through PyLate. Its PLAID index uses FastPLAID for efficient similarity search.

from pylate import indexes, models, retrieve

model = models.ColBERT(
    model_name_or_path="LiquidAI/LFM2.5-ColBERT-350M",
    trust_remote_code=True,
)
model.tokenizer.pad_token = model.tokenizer.eos_token

index = indexes.PLAID(index_folder="pylate-index", index_name="index", override=True)

docs_emb = model.encode(["document 1 text", "document 2 text"], is_query=False)
index.add_documents(documents_ids=["1", "2"], documents_embeddings=docs_emb)

retriever = retrieve.ColBERT(index=index)
q_emb = model.encode(["a search query"], is_query=True)
scores = retriever.retrieve(queries_embeddings=q_emb, k=10)

To rerank an existing first-stage pipeline instead, skip the index and use rank.rerank.

from pylate import models, rank

model = models.ColBERT(model_name_or_path="LiquidAI/LFM2.5-ColBERT-350M", trust_remote_code=True)

queries = ["query A"]
documents = [["candidate doc 1", "candidate doc 2"]]
documents_ids = [[1, 2]]

q_emb = model.encode(queries, is_query=True)
d_emb = model.encode(documents, is_query=False)

reranked = rank.rerank(
    documents_ids=documents_ids,
    queries_embeddings=q_emb,
    documents_embeddings=d_emb,
)

You can also fine-tune either model on your own data. The Embedding card provides snippets using sentence-transformers and MultipleNegativesRankingLoss.

Key Takeaways

  • Liquid AI’s LFM2.5-ColBERT-350M and LFM2.5-Embedding-350M are the first bidirectional LFMs, built for multilingual search across 11 languages.
  • Both 350M models lead their class on NanoBEIR and MKQA-11, beating the larger Qwen3-Embedding-0.6B.
  • Embedding gives the smallest, cheapest index; ColBERT trades a larger index for higher per-token accuracy.
  • GGUF builds run on CPUs, laptops, and edge via llama.cpp, with cached p50 query latency under 10 ms.
  • They drop into existing RAG pipelines through sentence-transformers and PyLate, under the LFM Open License v1.0.

Interactive Explainer



Check out the Technical details, LFM2.5-Embedding and LFM2.5-ColBERT. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us

YOU MAY ALSO LIKE

AI Boom in London | Bloomberg Tech: Europe 6/12/2026

SpaceX Begins Trading on the Nasdaq After Record IPO


Credit: Source link

ShareTweetSendSharePin

Related Posts

AI Boom in London | Bloomberg Tech: Europe 6/12/2026
AI & Technology

AI Boom in London | Bloomberg Tech: Europe 6/12/2026

June 19, 2026
SpaceX Begins Trading on the Nasdaq After Record IPO
AI & Technology

SpaceX Begins Trading on the Nasdaq After Record IPO

June 19, 2026
Elon Musk Is the World’s First Trillionaire
AI & Technology

Elon Musk Is the World’s First Trillionaire

June 19, 2026
SpaceX Makes History With Biggest-Ever IPO | Bloomberg Tech 6/12/2026
AI & Technology

SpaceX Makes History With Biggest-Ever IPO | Bloomberg Tech 6/12/2026

June 19, 2026
Next Post
At Least One UK Government Department Is Reportedly Done With X

At Least One UK Government Department Is Reportedly Done With X

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
My Husband’s Infidelity Put Us Into Debt (What Now?)

My Husband’s Infidelity Put Us Into Debt (What Now?)

June 13, 2026
Hermes Agent Adds Asynchronous Subagents, So Delegated Work No Longer Blocks the Parent Chat

Hermes Agent Adds Asynchronous Subagents, So Delegated Work No Longer Blocks the Parent Chat

June 16, 2026
My Boyfriend Gave Me a List of Things To Work On Before He Proposes (Should I Leave?)

My Boyfriend Gave Me a List of Things To Work On Before He Proposes (Should I Leave?)

June 18, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!