lhbonifacio
commited on
Commit
•
2df6ba9
1
Parent(s):
b837671
Update README.md
Browse files
README.md
CHANGED
@@ -17,7 +17,7 @@ inference: false
|
|
17 |
# multilingual-MiniLM-L6-v2-multi-msmarco Reranker finetuned on mMARCO
|
18 |
## Introduction
|
19 |
multilingual-MiniLM-L6-v2-multi-msmarco is a multilingual miniLM-based model finetuned on a multilingual version of MS MARCO passage dataset. This dataset, named mMARCO, is formed by passages in 8 different languages, translated from English MS MARCO passages collection.
|
20 |
-
Further information about the dataset or the translation method can be found on our [
|
21 |
## Usage
|
22 |
```python
|
23 |
from transformers import AutoTokenizer, AutoModel
|
@@ -30,10 +30,12 @@ model = AutoModel.from_pretrained(model_name)
|
|
30 |
# Citation
|
31 |
If you use multilingual-MiniLM-L6-v2-multi-msmarco, please cite:
|
32 |
|
33 |
-
@
|
34 |
-
title={A
|
35 |
-
author={
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
39 |
|
|
|
17 |
# multilingual-MiniLM-L6-v2-multi-msmarco Reranker finetuned on mMARCO
|
18 |
## Introduction
|
19 |
multilingual-MiniLM-L6-v2-multi-msmarco is a multilingual miniLM-based model finetuned on a multilingual version of MS MARCO passage dataset. This dataset, named mMARCO, is formed by passages in 8 different languages, translated from English MS MARCO passages collection.
|
20 |
+
Further information about the dataset or the translation method can be found on our [**mMARCO: A Multilingual Version of MS MARCO Passage Ranking Dataset**](https://arxiv.org/abs/2108.13897) and [mMARCO](https://github.com/unicamp-dl/mMARCO) repository.
|
21 |
## Usage
|
22 |
```python
|
23 |
from transformers import AutoTokenizer, AutoModel
|
|
|
30 |
# Citation
|
31 |
If you use multilingual-MiniLM-L6-v2-multi-msmarco, please cite:
|
32 |
|
33 |
+
@misc{bonifacio2021mmarco,
|
34 |
+
title={mMARCO: A Multilingual Version of MS MARCO Passage Ranking Dataset},
|
35 |
+
author={Luiz Henrique Bonifacio and Israel Campiotti and Roberto Lotufo and Rodrigo Nogueira},
|
36 |
+
year={2021},
|
37 |
+
eprint={2108.13897},
|
38 |
+
archivePrefix={arXiv},
|
39 |
+
primaryClass={cs.CL}
|
40 |
+
}
|
41 |
|