Sentence Similarity
sentence-transformers
Safetensors
Transformers
Dutch
bert
feature-extraction
Generated from Trainer
text-embeddings-inference
Instructions to use clips/e5-small-v2-t2t-nl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use clips/e5-small-v2-t2t-nl with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("clips/e5-small-v2-t2t-nl") 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] - Transformers
How to use clips/e5-small-v2-t2t-nl with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("clips/e5-small-v2-t2t-nl") model = AutoModel.from_pretrained("clips/e5-small-v2-t2t-nl", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,7 +19,7 @@ pipeline_tag: sentence-similarity
|
|
| 19 |
|
| 20 |
# E5-small-v2-t2t-nl5
|
| 21 |
|
| 22 |
-
This model is a fine-tuned version of [clips/e5-small-v2-t2t](https://huggingface.co/clips/e5-small-v2-t2t)
|
| 23 |
|
| 24 |
|
| 25 |
## Usage
|
|
|
|
| 19 |
|
| 20 |
# E5-small-v2-t2t-nl5
|
| 21 |
|
| 22 |
+
This model is a fine-tuned version of [clips/e5-small-v2-t2t](https://huggingface.co/clips/e5-small-v2-t2t).
|
| 23 |
|
| 24 |
|
| 25 |
## Usage
|