How to use agentlans/multilingual-e5-small-aligned with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("agentlans/multilingual-e5-small-aligned") sentences = [ "An air strike.", "מר פרקינסון היה מזועזע אם היה יודע איך מר פוקס מתנהג.", "Sonia: Jangan berkata begitu.", "En luftattack." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4]
The community tab is the place to discuss and collaborate with the HF community!