Instructions to use nicher92/saga-embed_v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use nicher92/saga-embed_v1 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("nicher92/saga-embed_v1") 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
File size: 685 Bytes
3be07ac | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | [
{
"idx": 0,
"name": "0",
"path": "",
"type": "sentence_transformers.models.Transformer"
},
{
"idx": 1,
"name": "1",
"path": "1_Pooling",
"type": "sentence_transformers.models.Pooling"
},
{
"idx": 2,
"name": "2",
"path": "2_Dense",
"type": "sentence_transformers.models.Dense"
},
{
"idx": 3,
"name": "3",
"path": "3_Dense",
"type": "sentence_transformers.models.Dense"
},
{
"idx": 4,
"name": "4",
"path": "4_Dense",
"type": "sentence_transformers.models.Dense"
},
{
"idx": 5,
"name": "5",
"path": "5_Normalize",
"type": "sentence_transformers.models.Normalize"
}
] |