Sentence Similarity
sentence-transformers
Safetensors
English
modernbert
colbert
late-interaction
retrieval
pylate
multi-vector
text-embeddings-inference
Instructions to use chungimungi/GLInt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use chungimungi/GLInt with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("chungimungi/GLInt") sentences = [ "That is a happy person", "That is a happy dog", "That is a very happy person", "Today is a sunny day" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,13 +5,12 @@ tags:
|
|
| 5 |
- late-interaction
|
| 6 |
- retrieval
|
| 7 |
- pylate
|
| 8 |
-
datasets:
|
| 9 |
-
- bisectgroup/hard-negatives-traversal
|
| 10 |
-
- lightonai/embeddings-fine-tuning
|
| 11 |
language:
|
| 12 |
- en
|
| 13 |
base_model:
|
| 14 |
- lightonai/LateOn-unsupervised
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# GLINT-base
|
|
|
|
| 5 |
- late-interaction
|
| 6 |
- retrieval
|
| 7 |
- pylate
|
|
|
|
|
|
|
|
|
|
| 8 |
language:
|
| 9 |
- en
|
| 10 |
base_model:
|
| 11 |
- lightonai/LateOn-unsupervised
|
| 12 |
+
license: apache-2.0
|
| 13 |
+
pipeline_tag: sentence-similarity
|
| 14 |
---
|
| 15 |
|
| 16 |
# GLINT-base
|