Sentence Similarity
ONNX
Safetensors
sentence-transformers
English
PyLate
modernbert
ColBERT
feature-extraction
text-embeddings-inference
🇪🇺 Region: EU
Instructions to use lightonai/LateOn with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use lightonai/LateOn 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") queries_emb = model.encode(queries, is_query=True) docs_emb = model.encode(documents, is_query=False) - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -61,7 +61,7 @@ This release was focused on contrastive data exploration. We did not run a knowl
|
|
| 61 |
LateOn achieves **57.22** average NDCG@10 on BEIR (14 datasets) and **60.36** on decontaminated BEIR (12 datasets), leading all ColBERT models. See our [blog post](https://huggingface.co/blog/lightonai/denseon-lateon) for full results and analysis.
|
| 62 |
|
| 63 |
|
| 64 |
-
Alongside LateOn, we also trained [DenseOn](https://huggingface.co/lightonai/DenseOn), a dense (single vector) variant, trained on the same setup.
|
| 65 |
|
| 66 |
## Results
|
| 67 |
|
|
|
|
| 61 |
LateOn achieves **57.22** average NDCG@10 on BEIR (14 datasets) and **60.36** on decontaminated BEIR (12 datasets), leading all ColBERT models. See our [blog post](https://huggingface.co/blog/lightonai/denseon-lateon) for full results and analysis.
|
| 62 |
|
| 63 |
|
| 64 |
+
Alongside LateOn, we also trained [DenseOn](https://huggingface.co/lightonai/DenseOn), a dense (single vector) variant, trained on the same setup. This variant is easier and cheaper to use, albeit with slightly weaker results (achieving a score of 56.20 on BEIR, it is still stronger than any dense base-sized model). It may also suffer from some limitations compared to LateOn, such as in terms of generalisation and long context.
|
| 65 |
|
| 66 |
## Results
|
| 67 |
|