Update README.md
Browse files
README.md
CHANGED
|
@@ -14,39 +14,27 @@ datasets:
|
|
| 14 |
pipeline: fill-mask
|
| 15 |
widget:
|
| 16 |
- text: The capital of Iceland is<mask> .
|
| 17 |
-
- text: H�fu�borg �slands er<mask> .
|
| 18 |
---
|
| 19 |
|
| 20 |
# XLMR-ENIS
|
| 21 |
|
| 22 |
-
## Model description
|
| 23 |
-
|
| 24 |
This is a XLMR model trained on Icelandic and English text.
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
This model is part of my MSc thesis about Q&A for Icelandic.
|
| 29 |
-
|
| 30 |
-
#### How to use
|
| 31 |
-
|
| 32 |
-
```python
|
| 33 |
-
from transformers import AutoTokenizer, AutoModelForMaskedLM
|
| 34 |
-
|
| 35 |
-
tokenizer = AutoTokenizer.from_pretrained("vesteinn/XLMR-ENIS")
|
| 36 |
-
|
| 37 |
-
model = AutoModelForMaskedLM.from_pretrained("vesteinn/XLMR-ENIS")
|
| 38 |
-
```
|
| 39 |
-
|
| 40 |
-
#### Limitations and bias
|
| 41 |
-
|
| 42 |
-
## Training data
|
| 43 |
-
|
| 44 |
-
## Training procedure
|
| 45 |
-
|
| 46 |
-
## Eval results
|
| 47 |
-
|
| 48 |
-
### BibTeX entry and citation info
|
| 49 |
|
| 50 |
```bibtex
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
```
|
| 52 |
|
|
|
|
| 14 |
pipeline: fill-mask
|
| 15 |
widget:
|
| 16 |
- text: The capital of Iceland is<mask> .
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# XLMR-ENIS
|
| 20 |
|
|
|
|
|
|
|
| 21 |
This is a XLMR model trained on Icelandic and English text.
|
| 22 |
|
| 23 |
+
If you find this model useful please cite
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
```bibtex
|
| 26 |
+
@inproceedings{snaebjarnarson-einarsson-2022-cross,
|
| 27 |
+
title = "Cross-Lingual {QA} as a Stepping Stone for Monolingual Open {QA} in {I}celandic",
|
| 28 |
+
author = "Sn{\ae}bjarnarson, V{\'e}steinn and
|
| 29 |
+
Einarsson, Hafsteinn",
|
| 30 |
+
booktitle = "Proceedings of the Workshop on Multilingual Information Access (MIA)",
|
| 31 |
+
month = jul,
|
| 32 |
+
year = "2022",
|
| 33 |
+
address = "Seattle, USA",
|
| 34 |
+
publisher = "Association for Computational Linguistics",
|
| 35 |
+
url = "https://aclanthology.org/2022.mia-1.4",
|
| 36 |
+
doi = "10.18653/v1/2022.mia-1.4",
|
| 37 |
+
pages = "29--36",
|
| 38 |
+
}
|
| 39 |
```
|
| 40 |
|