Sentence Similarity
Safetensors
sentence-transformers
English
PyLate
modernbert
ColBERT
multi-vector
embeddings
retrieval
feature-extraction
Generated from Trainer
dataset_size:1695819
loss:Contrastive
Eval Results (legacy)
text-embeddings-inference
🇪🇺 Region: EU
Instructions to use lightonai/ColBERT-Zero-supervised with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use lightonai/ColBERT-Zero-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/ColBERT-Zero-supervised") queries_emb = model.encode(queries, is_query=True) docs_emb = model.encode(documents, is_query=False) - Notebooks
- Google Colab
- Kaggle
Simplify the Sentence Transformers section intro
Browse files
README.md
CHANGED
|
@@ -1019,7 +1019,7 @@ ColBERT(
|
|
| 1019 |
|
| 1020 |
### Sentence Transformers
|
| 1021 |
|
| 1022 |
-
This model can be used with [Sentence Transformers](https://www.sbert.net/) as a multi-vector (ColBERT-style late interaction) retriever via the `MultiVectorEncoder`
|
| 1023 |
|
| 1024 |
```bash
|
| 1025 |
pip install "sentence-transformers>=6.0.1"
|
|
|
|
| 1019 |
|
| 1020 |
### Sentence Transformers
|
| 1021 |
|
| 1022 |
+
This model can be used with [Sentence Transformers](https://www.sbert.net/) as a multi-vector (ColBERT-style late interaction) retriever via the `MultiVectorEncoder`:
|
| 1023 |
|
| 1024 |
```bash
|
| 1025 |
pip install "sentence-transformers>=6.0.1"
|