Salesforce/wikitext
Viewer • Updated • 3.71M • 1.86M • 811
How to use YeonwooSung/Llama-3-8B-llm2vec-Emb-v0.1 with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("YeonwooSung/Llama-3-8B-llm2vec-Emb-v0.1")
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]Base model
meta-llama/Llama-3.1-8B