"No sentence-transformers model found with name FremyCompany/BioLORD-2023-C"

#2
by niklaaas - opened

Running this

"""
from sentence_transformers import SentenceTransformer
biolord_2023_c_model = SentenceTransformer("FremyCompany/BioLORD-2023-C")
"""

I get

"No sentence-transformers model found with name FremyCompany/BioLORD-2023-C. Creating a new one with mean pooling."

SentenceTransformer("FremyCompany/BioLORD-2023") works as expected

I would appreciate any help. Thanks.

OK, if I check out the commit with the sentence transformers wrapper it works...

niklaaas changed discussion status to closed

You can use either the version with the wrapper or just leave the warning as is, as creating a new SentenceTransformer model with mean pooling is the correct behavior ;)

Yeah, I figured that out too late ;) Thanks.

Sign up or log in to comment