fabelous-embeddings/example.py

10 lines
221 B
Python
Raw Permalink Normal View History

2024-10-31 17:00:09 +00:00
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("fabelous-mini-embedder")
Instruction = "This is a example Sentence"
embeddings = model.encode(Instruction)
print(embeddings)