How to use codersan/FaLabseV13p1 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("codersan/FaLabseV13p1") sentences = [ "اخترشناس معروف واقعی کیست؟", "چرا دولت هند به طور ناگهانی از شیطنت 500 و 1000 روپیه خبر داد؟", "اخترشناس فوق العاده استاد کیست؟", "چگونه باید برای مکان های دانشگاه آماده شد؟" ] 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!