Sentence Similarity
Safetensors
sentence-transformers
English
PyLate
modernbert
ColBERT
embeddings
retrieval
feature-extraction
Generated from Trainer
dataset_size:1695819
loss:Contrastive
Eval Results (legacy)
text-embeddings-inference
🇪🇺 Region: EU
Instructions to use lightonai/ModernColBERT-embed-base-supervised with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use lightonai/ModernColBERT-embed-base-supervised 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/ModernColBERT-embed-base-supervised") 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
|
@@ -1650,10 +1650,14 @@ You can finetune this model on your own dataset.
|
|
| 1650 |
|
| 1651 |
#### ColBERT-Zero
|
| 1652 |
```bibtex
|
| 1653 |
-
@misc{
|
| 1654 |
-
title
|
| 1655 |
-
author
|
| 1656 |
-
year
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1657 |
}
|
| 1658 |
```
|
| 1659 |
#### Sentence Transformers
|
|
|
|
| 1650 |
|
| 1651 |
#### ColBERT-Zero
|
| 1652 |
```bibtex
|
| 1653 |
+
@misc{chaffin2026colbertzeropretrainpretraincolbert,
|
| 1654 |
+
title = {ColBERT-Zero: To Pre-train Or Not To Pre-train ColBERT models},
|
| 1655 |
+
author = {Antoine Chaffin and Luca Arnaboldi and Amélie Chatelain and Florent Krzakala},
|
| 1656 |
+
year = {2026},
|
| 1657 |
+
eprint = {2602.16609},
|
| 1658 |
+
archivePrefix = {arXiv},
|
| 1659 |
+
primaryClass = {cs.CL},
|
| 1660 |
+
url = {https://arxiv.org/abs/2602.16609},
|
| 1661 |
}
|
| 1662 |
```
|
| 1663 |
#### Sentence Transformers
|