Instructions to use cnmoro/Linq-Embed-Mistral-Distilled with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Model2Vec
How to use cnmoro/Linq-Embed-Mistral-Distilled with Model2Vec:
from model2vec import StaticModel model = StaticModel.from_pretrained("cnmoro/Linq-Embed-Mistral-Distilled") - sentence-transformers
How to use cnmoro/Linq-Embed-Mistral-Distilled with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("cnmoro/Linq-Embed-Mistral-Distilled") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,7 +11,7 @@ tags:
|
|
| 11 |
- sentence-transformers
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
This [Model2Vec](https://github.com/MinishLab/model2vec) model is a distilled version of the Linq-AI-Research/Linq-Embed-Mistral(https://huggingface.co/Linq-AI-Research/Linq-Embed-Mistral) Sentence Transformer. It uses static embeddings, allowing text embeddings to be computed orders of magnitude faster on both GPU and CPU. It is designed for applications where computational resources are limited or where real-time performance is critical. Model2Vec models are the smallest, fastest, and most performant static embedders available. The distilled models are up to 50 times smaller and 500 times faster than traditional Sentence Transformers.
|
| 17 |
|
|
|
|
| 11 |
- sentence-transformers
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# Linq-Embed-Mistral-Distilled Model Card
|
| 15 |
|
| 16 |
This [Model2Vec](https://github.com/MinishLab/model2vec) model is a distilled version of the Linq-AI-Research/Linq-Embed-Mistral(https://huggingface.co/Linq-AI-Research/Linq-Embed-Mistral) Sentence Transformer. It uses static embeddings, allowing text embeddings to be computed orders of magnitude faster on both GPU and CPU. It is designed for applications where computational resources are limited or where real-time performance is critical. Model2Vec models are the smallest, fastest, and most performant static embedders available. The distilled models are up to 50 times smaller and 500 times faster than traditional Sentence Transformers.
|
| 17 |
|