antoinelouis
commited on
Commit
•
1ea6b9a
1
Parent(s):
009e5fb
Update README.md
Browse files
README.md
CHANGED
@@ -12,7 +12,7 @@ tags:
|
|
12 |
library_name: sentence-transformers
|
13 |
---
|
14 |
|
15 |
-
# biencoder-mMiniLMv2-L6-
|
16 |
|
17 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search. The model was trained on the **French** portion of the [mMARCO](https://huggingface.co/datasets/unicamp-dl/mmarco) dataset.
|
18 |
|
@@ -33,7 +33,7 @@ Then you can use the model like this:
|
|
33 |
from sentence_transformers import SentenceTransformer
|
34 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
35 |
|
36 |
-
model = SentenceTransformer('antoinelouis/biencoder-mMiniLMv2-L6-
|
37 |
embeddings = model.encode(sentences)
|
38 |
print(embeddings)
|
39 |
```
|
@@ -58,8 +58,8 @@ def mean_pooling(model_output, attention_mask):
|
|
58 |
sentences = ['This is an example sentence', 'Each sentence is converted']
|
59 |
|
60 |
# Load model from HuggingFace Hub
|
61 |
-
tokenizer = AutoTokenizer.from_pretrained('antoinelouis/biencoder-mMiniLMv2-L6-
|
62 |
-
model = AutoModel.from_pretrained('antoinelouis/biencoder-mMiniLMv2-L6-
|
63 |
|
64 |
# Tokenize sentences
|
65 |
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
|
@@ -80,17 +80,16 @@ print(sentence_embeddings)
|
|
80 |
|
81 |
We evaluated our model on the smaller development set of mMARCO-fr, which consists of 6,980 queries for a corpus of 8.8M candidate passages. Below, we compared the model performance with other biencoder models fine-tuned on the same dataset. We report the mean reciprocal rank (MRR), normalized discounted cumulative gainand (NDCG), mean average precision (MAP), and recall at various cut-offs (R@k).
|
82 |
|
83 |
-
| | model
|
84 |
-
|
85 |
-
| 1 | [biencoder-camembert-base-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-
|
86 |
-
| 2 | [biencoder-
|
87 |
-
| 3 | [biencoder-
|
88 |
-
| 4 | [biencoder-
|
89 |
-
| 5 | [biencoder-mMiniLMv2-L12-
|
90 |
-
| 6 | [biencoder-camemberta-base-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-camemberta-base-mmarcoFR)
|
91 |
-
| 7 | [biencoder-electra-base-french-
|
92 |
-
| 8 |
|
93 |
-
| 9 | **biencoder-mMiniLMv2-L6-H384-distilled-from-XLMR-Large-mmarcoFR** | 428MB | 22.29 | 26.57 | 21.8 | 41.25 | 66.78 | 79.83 |
|
94 |
|
95 |
## Training
|
96 |
***
|
@@ -117,10 +116,10 @@ Link: [https://ir-datasets.com/mmarco.html#mmarco/v2/fr/](https://ir-datasets.co
|
|
117 |
```bibtex
|
118 |
@online{louis2023,
|
119 |
author = 'Antoine Louis',
|
120 |
-
title = 'biencoder-mMiniLMv2-L6-
|
121 |
publisher = 'Hugging Face',
|
122 |
month = 'may',
|
123 |
year = '2023',
|
124 |
-
url = 'https://huggingface.co/antoinelouis/biencoder-mMiniLMv2-L6-
|
125 |
}
|
126 |
```
|
|
|
12 |
library_name: sentence-transformers
|
13 |
---
|
14 |
|
15 |
+
# biencoder-mMiniLMv2-L6-mmarcoFR
|
16 |
|
17 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search. The model was trained on the **French** portion of the [mMARCO](https://huggingface.co/datasets/unicamp-dl/mmarco) dataset.
|
18 |
|
|
|
33 |
from sentence_transformers import SentenceTransformer
|
34 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
35 |
|
36 |
+
model = SentenceTransformer('antoinelouis/biencoder-mMiniLMv2-L6-mmarcoFR')
|
37 |
embeddings = model.encode(sentences)
|
38 |
print(embeddings)
|
39 |
```
|
|
|
58 |
sentences = ['This is an example sentence', 'Each sentence is converted']
|
59 |
|
60 |
# Load model from HuggingFace Hub
|
61 |
+
tokenizer = AutoTokenizer.from_pretrained('antoinelouis/biencoder-mMiniLMv2-L6-mmarcoFR')
|
62 |
+
model = AutoModel.from_pretrained('antoinelouis/biencoder-mMiniLMv2-L6-mmarcoFR')
|
63 |
|
64 |
# Tokenize sentences
|
65 |
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
|
|
|
80 |
|
81 |
We evaluated our model on the smaller development set of mMARCO-fr, which consists of 6,980 queries for a corpus of 8.8M candidate passages. Below, we compared the model performance with other biencoder models fine-tuned on the same dataset. We report the mean reciprocal rank (MRR), normalized discounted cumulative gainand (NDCG), mean average precision (MAP), and recall at various cut-offs (R@k).
|
82 |
|
83 |
+
| | model | Vocab. | #Param. | Size | MRR@10 | NDCG@10 | MAP@10 | R@10 | R@100(↑) | R@500 |
|
84 |
+
|---:|:------------------------------------------------------------------------------------------------------------------------|:-------|--------:|------:|---------:|----------:|---------:|-------:|-----------:|--------:|
|
85 |
+
| 1 | [biencoder-camembert-base-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-camembert-base-mmarcoFR) | 🇫🇷 | 110M | 443MB | 28.53 | 33.72 | 27.93 | 51.46 | 77.82 | 89.13 |
|
86 |
+
| 2 | [biencoder-mpnet-base-all-v2-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-mpnet-base-all-v2-mmarcoFR) | 🇬🇧 | 109M | 438MB | 28.04 | 33.28 | 27.50 | 51.07 | 77.68 | 88.67 |
|
87 |
+
| 3 | [biencoder-distilcamembert-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-distilcamembert-mmarcoFR) | 🇫🇷 | 68M | 272MB | 26.80 | 31.87 | 26.23 | 49.20 | 76.44 | 87.87 |
|
88 |
+
| 4 | [biencoder-MiniLM-L6-all-v2-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-MiniLM-L6-all-v2-mmarcoFR) | 🇬🇧 | 23M | 91MB | 25.49 | 30.39 | 24.99 | 47.10 | 73.48 | 86.09 |
|
89 |
+
| 5 | [biencoder-mMiniLMv2-L12-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-mMiniLMv2-L12-mmarcoFR) | 🇫🇷,99+ | 117M | 471MB | 24.74 | 29.41 | 24.23 | 45.40 | 71.52 | 84.42 |
|
90 |
+
| 6 | [biencoder-camemberta-base-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-camemberta-base-mmarcoFR) | 🇫🇷 | 112M | 447MB | 24.78 | 29.24 | 24.23 | 44.58 | 69.59 | 82.18 |
|
91 |
+
| 7 | [biencoder-electra-base-french-mmarcoFR](https://huggingface.co/antoinelouis/biencoder-electra-base-french-mmarcoFR) | 🇫🇷 | 110M | 440MB | 23.38 | 27.97 | 22.91 | 43.50 | 68.96 | 81.61 |
|
92 |
+
| 8 | **biencoder-mMiniLMv2-L6-mmarcoFR** | 🇫🇷,99+ | 107M | 428MB | 22.29 | 26.57 | 21.80 | 41.25 | 66.78 | 79.83 |
|
|
|
93 |
|
94 |
## Training
|
95 |
***
|
|
|
116 |
```bibtex
|
117 |
@online{louis2023,
|
118 |
author = 'Antoine Louis',
|
119 |
+
title = 'biencoder-mMiniLMv2-L6-mmarcoFR: A Biencoder Model Trained on French mMARCO',
|
120 |
publisher = 'Hugging Face',
|
121 |
month = 'may',
|
122 |
year = '2023',
|
123 |
+
url = 'https://huggingface.co/antoinelouis/biencoder-mMiniLMv2-L6-mmarcoFR',
|
124 |
}
|
125 |
```
|