Sentence Similarity
Safetensors
sentence-transformers
PyLate
lfm2
liquid
lfm2.5
edge
ColBERT
feature-extraction
custom_code
Instructions to use LiquidAI/LFM2.5-ColBERT-350M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use LiquidAI/LFM2.5-ColBERT-350M with sentence-transformers:
from pylate import models queries = [ "Which planet is known as the Red Planet?", "What is the largest planet in our solar system?", ] documents = [ ["Mars is the Red Planet.", "Venus is Earth's twin."], ["Jupiter is the largest planet.", "Saturn has rings."], ] model = models.ColBERT(model_name_or_path="LiquidAI/LFM2.5-ColBERT-350M") queries_emb = model.encode(queries, is_query=True) docs_emb = model.encode(documents, is_query=False) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -245,7 +245,7 @@ We highlight (= bold) the best bi-encoder and best late retriever for each langu
|
|
| 245 |
|
| 246 |
| Model | Type | AVG | ar | de | en | es | fr | it | ja | ko | no | pt | sv |
|
| 247 |
| --- | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: |
|
| 248 |
-
| Alibaba-NLP/gte-multilingual-base | bienc | 0.675 | 0.567 | 0.692 | 0.741 | 0.705 | 0.703 | 0.697 | 0.655 | 0.563 | 0.698 | 0.700 | 0.699 |
|
| 249 |
| Alibaba-NLP/gte-modernbert-base | bienc | 0.295 | 0.060 | 0.333 | 0.736 | 0.273 | 0.417 | 0.291 | 0.100 | 0.052 | 0.332 | 0.326 | 0.330 |
|
| 250 |
| lightonai/LateOn | colbert | 0.454 | 0.157 | 0.492 | **0.755** | 0.537 | 0.577 | 0.481 | 0.316 | 0.209 | 0.472 | 0.502 | 0.501 |
|
| 251 |
| lightonai/DenseOn | bienc | 0.435 | 0.165 | 0.482 | **0.751** | 0.491 | 0.553 | 0.457 | 0.325 | 0.222 | 0.438 | 0.443 | 0.453 |
|
|
@@ -254,7 +254,7 @@ We highlight (= bold) the best bi-encoder and best late retriever for each langu
|
|
| 254 |
| BAAI/bge-large-en-v1.5 | bienc | 0.413 | 0.133 | 0.471 | 0.748 | 0.450 | 0.531 | 0.461 | 0.208 | 0.172 | 0.456 | 0.443 | 0.467 |
|
| 255 |
| LiquidAI/LFM2-ColBERT-350M | colbert | 0.646 | 0.554 | 0.696 | 0.754 | 0.711 | 0.710 | 0.667 | 0.658 | 0.558 | 0.541 | 0.669 | 0.589 |
|
| 256 |
| **LiquidAI/LFM2.5-ColBERT-350M** | colbert | **0.694** | 0.608 | **0.709** | 0.748 | **0.711** | **0.715** | **0.707** | **0.703** | **0.640** | **0.689** | **0.703** | **0.700** |
|
| 257 |
-
| **LiquidAI/LFM2.5-Embedding-350M** | bienc | **0.691** | **0.610** | **0.709** | 0.738 | **0.708** | **0.715** | **0.703** | **0.685** | **0.630** |
|
| 258 |
|
| 259 |
## 📬 Contact
|
| 260 |
|
|
|
|
| 245 |
|
| 246 |
| Model | Type | AVG | ar | de | en | es | fr | it | ja | ko | no | pt | sv |
|
| 247 |
| --- | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: | :-: |
|
| 248 |
+
| Alibaba-NLP/gte-multilingual-base | bienc | 0.675 | 0.567 | 0.692 | 0.741 | 0.705 | 0.703 | 0.697 | 0.655 | 0.563 | **0.698** | 0.700 | 0.699 |
|
| 249 |
| Alibaba-NLP/gte-modernbert-base | bienc | 0.295 | 0.060 | 0.333 | 0.736 | 0.273 | 0.417 | 0.291 | 0.100 | 0.052 | 0.332 | 0.326 | 0.330 |
|
| 250 |
| lightonai/LateOn | colbert | 0.454 | 0.157 | 0.492 | **0.755** | 0.537 | 0.577 | 0.481 | 0.316 | 0.209 | 0.472 | 0.502 | 0.501 |
|
| 251 |
| lightonai/DenseOn | bienc | 0.435 | 0.165 | 0.482 | **0.751** | 0.491 | 0.553 | 0.457 | 0.325 | 0.222 | 0.438 | 0.443 | 0.453 |
|
|
|
|
| 254 |
| BAAI/bge-large-en-v1.5 | bienc | 0.413 | 0.133 | 0.471 | 0.748 | 0.450 | 0.531 | 0.461 | 0.208 | 0.172 | 0.456 | 0.443 | 0.467 |
|
| 255 |
| LiquidAI/LFM2-ColBERT-350M | colbert | 0.646 | 0.554 | 0.696 | 0.754 | 0.711 | 0.710 | 0.667 | 0.658 | 0.558 | 0.541 | 0.669 | 0.589 |
|
| 256 |
| **LiquidAI/LFM2.5-ColBERT-350M** | colbert | **0.694** | 0.608 | **0.709** | 0.748 | **0.711** | **0.715** | **0.707** | **0.703** | **0.640** | **0.689** | **0.703** | **0.700** |
|
| 257 |
+
| **LiquidAI/LFM2.5-Embedding-350M** | bienc | **0.691** | **0.610** | **0.709** | 0.738 | **0.708** | **0.715** | **0.703** | **0.685** | **0.630** | 0.691 | **0.710** | **0.708** |
|
| 258 |
|
| 259 |
## 📬 Contact
|
| 260 |
|