Sentence Similarity
Safetensors
sentence-transformers
English
PyLate
modernbert
multi-vector
ColBERT
feature-extraction
text-embeddings-inference
🇪🇺 Region: EU
Instructions to use lightonai/LateOn-regularized with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use lightonai/LateOn-regularized 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="lightonai/LateOn-regularized") 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
|
@@ -85,7 +85,7 @@ Key takeaways:
|
|
| 85 |
- **Massive improvement for MUVERA/SMVE**: centered MUVERA rk=0 goes from 32.66 → 40.80 (+8.1 points), and with rk=200 reranking the gap to full PLAID drops to just 2.7 points (note: the goal of the study was making representations better, not sweeping MUVERA/SMVE parameters to get perfect scores)
|
| 86 |
- **Cross-method transfer**: MUVERA-regularized training also boosts SMVE, and vice-versa, showing the regularization improves global compressibility rather than optimizing a single projection subspace.
|
| 87 |
|
| 88 |
-
### BEIR (
|
| 89 |
|
| 90 |
LateOn-regularized maintains the strong PLAID performance of the LateOn family. For full BEIR results, see the [LateOn model card](https://huggingface.co/lightonai/LateOn).
|
| 91 |
|
|
|
|
| 85 |
- **Massive improvement for MUVERA/SMVE**: centered MUVERA rk=0 goes from 32.66 → 40.80 (+8.1 points), and with rk=200 reranking the gap to full PLAID drops to just 2.7 points (note: the goal of the study was making representations better, not sweeping MUVERA/SMVE parameters to get perfect scores)
|
| 86 |
- **Cross-method transfer**: MUVERA-regularized training also boosts SMVE, and vice-versa, showing the regularization improves global compressibility rather than optimizing a single projection subspace.
|
| 87 |
|
| 88 |
+
### BEIR (15 datasets, NDCG@10) — PLAID Retrieval
|
| 89 |
|
| 90 |
LateOn-regularized maintains the strong PLAID performance of the LateOn family. For full BEIR results, see the [LateOn model card](https://huggingface.co/lightonai/LateOn).
|
| 91 |
|