Sentence Similarity
sentence-transformers
Safetensors
English
bert
feature-extraction
Generated from Trainer
dataset_size:557850
loss:StarbucksLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use ielabgroup/Starbucks_STS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use ielabgroup/Starbucks_STS with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("ielabgroup/Starbucks_STS") sentences = [ "A dog is in the water.", "The woman is wearing green.", "The dog is rolling around in the grass.", "A brown dog swims through water outdoors with a tennis ball in its mouth." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Ctrl+K