lhbonifacio commited on
Commit
3b0968a
1 Parent(s): 2919852

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -7
README.md CHANGED
@@ -17,7 +17,7 @@ inference: false
17
  # multilingual-MiniLM-L6-v2-en-pt-msmarco Reranker finetuned on mMARCO
18
  ## Introduction
19
  multilingual-MiniLM-L6-v2-en-pt-msmarco is a multilingual miniLM-based model finetuned on a bilingual version of MS MARCO passage dataset. This bilingual dataset version is formed by the original MS MARCO dataset (in English) and a Portuguese translated version.
20
- Further information about the dataset or the translation method can be found on our [Cross-Lingual repository](https://github.com/unicamp-dl/cross-lingual-analysis).
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-en-pt-msmarco, please cite:
32
 
33
- @article{rosa2021cost,
34
- title={A cost-benefit analysis of cross-lingual transfer methods},
35
- author={Rosa, Guilherme Moraes and Bonifacio, Luiz Henrique and de Souza, Leandro Rodrigues and Lotufo, Roberto and Nogueira, Rodrigo},
36
- journal={arXiv preprint arXiv:2105.06813},
37
- year={2021}
38
- }
 
 
39
 
 
17
  # multilingual-MiniLM-L6-v2-en-pt-msmarco Reranker finetuned on mMARCO
18
  ## Introduction
19
  multilingual-MiniLM-L6-v2-en-pt-msmarco is a multilingual miniLM-based model finetuned on a bilingual version of MS MARCO passage dataset. This bilingual dataset version is formed by the original MS MARCO dataset (in English) and a Portuguese translated version.
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-en-pt-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