Sentence Similarity
sentence-transformers
Safetensors
English
distilbert
feature-extraction
mteb
Eval Results (legacy)
text-embeddings-inference
Instructions to use prdev/mini-gte with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use prdev/mini-gte with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("prdev/mini-gte") 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] - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -8708,16 +8708,6 @@ print(similarities.shape) # Expected: [3, 3]
|
|
| 8708 |
- Datasets: 2.21.0
|
| 8709 |
- Tokenizers: 0.21.0
|
| 8710 |
|
| 8711 |
-
## Citation
|
| 8712 |
-
```bibtex
|
| 8713 |
-
@misc{mini-gte2025,
|
| 8714 |
-
title={Mini-GTE: A Fast and Efficient Distilled Sentence Transformer},
|
| 8715 |
-
author={QTACK},
|
| 8716 |
-
year={2025},
|
| 8717 |
-
note={Available on the Hugging Face Hub}
|
| 8718 |
-
}
|
| 8719 |
-
```
|
| 8720 |
-
|
| 8721 |
## Getting Help
|
| 8722 |
|
| 8723 |
For any questions, suggestions, or issues, please contact the QTACK team directly through our [contact page](https://www.qtack.com/contact).
|
|
|
|
| 8708 |
- Datasets: 2.21.0
|
| 8709 |
- Tokenizers: 0.21.0
|
| 8710 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8711 |
## Getting Help
|
| 8712 |
|
| 8713 |
For any questions, suggestions, or issues, please contact the QTACK team directly through our [contact page](https://www.qtack.com/contact).
|