We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unsure if this is expected behavior, but no warning is given that the loaded models differ.
from sentence_transformers import SentenceTransformer trust = SentenceTransformer("jinaai/jina-embeddings-v2-base-de", trust_remote_code=True) no_trust = SentenceTransformer("jinaai/jina-embeddings-v2-base-de", trust_remote_code=False) assert all(trust.encode("I love cats") == no_trust.encode("I love cats")) # AssertionError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Unsure if this is expected behavior, but no warning is given that the loaded models differ.
The text was updated successfully, but these errors were encountered: