Sentence Similarity
sentence-transformers
PyTorch
ONNX
Safetensors
OpenVINO
French
camembert
Text
Sentence Similarity
Sentence-Embedding
camembert-large
Eval Results (legacy)
text-embeddings-inference
Instructions to use Lajavaness/sentence-camembert-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use Lajavaness/sentence-camembert-large with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("Lajavaness/sentence-camembert-large") sentences = [ "C'est une personne heureuse", "C'est un chien heureux", "C'est une personne très heureuse", "Aujourd'hui est une journée ensoleillée" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Inference
- Notebooks
- Google Colab
- Kaggle
not on MTEB Leaderboard
#3
by Mehdiagn - opened
Hello, is this model really an improvement on dangvantuan/sentence-camembert-large ? I don't see this one on the MTEB leaderboard, and also it has less downloads.
Can you tell me which one is best for a retrieval task on french text please?
Hi @Mehdiagn ,
Yes, this is an improvement from dangvantuan/sentence-camembert-large, I haven't had time to evaluate it on other tasks on MTEB. However, it has very good performance for semantic search task.
Hey!
I'll update the leaderboard soon (by next week) with results of this model. We've also added other models such as sentence-flaubert.
Results coming soon! :)
thanks very much!!