Sentence Similarity
sentence-transformers
Safetensors
French
English
xlm-roberta
evalllm2026
text-embeddings-inference
Instructions to use cea-list-ia/evalllm2026-mesh-finetuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use cea-list-ia/evalllm2026-mesh-finetuned with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("cea-list-ia/evalllm2026-mesh-finetuned") 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] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- fr
|
| 5 |
+
- en
|
| 6 |
+
base_model:
|
| 7 |
+
- BAAI/bge-m3
|
| 8 |
+
pipeline_tag: sentence-similarity
|
| 9 |
+
library_name: sentence-transformers
|
| 10 |
+
tags:
|
| 11 |
+
- evalllm2026
|
| 12 |
+
- sentence-similarity
|
| 13 |
---
|
| 14 |
+
# cea-list-ia/evalllm2026-mesh-finetuned
|
| 15 |
+
|
| 16 |
+
This model was trained by the CEA-LIST to participate in the [evalLLM2026 challenge](https://github.com/cea-list-lasti/evalllm2026-distrib).
|
| 17 |
+
|
| 18 |
+
## Model Description
|
| 19 |
+
- **Trained by:** CEA-LIST
|
| 20 |
+
- **Task:** Entity Linking (MeSH)
|
| 21 |
+
- **Type:** Retriever (Embedding Model)
|
| 22 |
+
- **Training Data:** Wikipedia, further trained on the training data of the challenge.
|
| 23 |
+
|
| 24 |
+
This retriever is an embedding model designed to find the closest matches in MeSH for entity linking.
|
| 25 |
+
|
| 26 |
+
## Usage
|
| 27 |
+
|
| 28 |
+
### Query Prefix
|
| 29 |
+
To use this model, you should prompt it with the following query prefix:
|
| 30 |
+
`Represent this medical sentence for retrieving relevant MeSH terms:`
|
| 31 |
+
|
| 32 |
+
## More Information
|
| 33 |
+
For more details, please refer to the [GitHub repository](https://github.com/cea-list-lasti/evalllm2026-distrib).
|
| 34 |
+
|