Sentence Similarity
sentence-transformers
Safetensors
bert
feature-extraction
Generated from Trainer
dataset_size:14356
loss:MultipleNegativesRankingLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use Mr-FineTuner/Eval_02_Final_1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use Mr-FineTuner/Eval_02_Final_1 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("Mr-FineTuner/Eval_02_Final_1") sentences = [ "Pear trees are usually productive for 50 to 75 years though some still produce fruit after 100 years .", "In the late 1950s , he studied cinema in France .", "Pear trees are usually productive for 50 to 75 years though some still produce fruit after 100 years .", "A recording medium is a physical material that holds data expressed in any of the existing recording formats ." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Ctrl+K