How to use FremyCompany/BioLORD-2023 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("FremyCompany/BioLORD-2023") sentences = [ "bartonellosis", "cat scratch disease", "cat scratch wound", "tick-borne orbivirus fever", "cat fur" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [5, 5]
The community tab is the place to discuss and collaborate with the HF community!