Commit ·
80cb847
1
Parent(s): 7672ba9
Update citation
Browse files- README.md +21 -7
- catalan_textual_corpus.py +21 -7
README.md
CHANGED
|
@@ -147,13 +147,27 @@ The dataset contains a single split: "train".
|
|
| 147 |
### Citation Information
|
| 148 |
|
| 149 |
```
|
| 150 |
-
@
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 157 |
}
|
| 158 |
```
|
| 159 |
|
|
|
|
| 147 |
### Citation Information
|
| 148 |
|
| 149 |
```
|
| 150 |
+
@inproceedings{armengol-estape-etal-2021-multilingual,
|
| 151 |
+
title = "Are Multilingual Models the Best Choice for Moderately Under-resourced Languages? {A} Comprehensive Assessment for {C}atalan",
|
| 152 |
+
author = "Armengol-Estap{\'e}, Jordi and
|
| 153 |
+
Carrino, Casimiro Pio and
|
| 154 |
+
Rodriguez-Penagos, Carlos and
|
| 155 |
+
de Gibert Bonet, Ona and
|
| 156 |
+
Armentano-Oller, Carme and
|
| 157 |
+
Gonzalez-Agirre, Aitor and
|
| 158 |
+
Melero, Maite and
|
| 159 |
+
Villegas, Marta",
|
| 160 |
+
booktitle = "Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021",
|
| 161 |
+
month = aug,
|
| 162 |
+
year = "2021",
|
| 163 |
+
address = "Online",
|
| 164 |
+
publisher = "Association for Computational Linguistics",
|
| 165 |
+
url = "https://aclanthology.org/2021.findings-acl.437",
|
| 166 |
+
doi = "10.18653/v1/2021.findings-acl.437",
|
| 167 |
+
pages = "4933--4946",
|
| 168 |
+
eprint={2107.07903},
|
| 169 |
+
archivePrefix={arXiv},
|
| 170 |
+
primaryClass={cs.CL}
|
| 171 |
}
|
| 172 |
```
|
| 173 |
|
catalan_textual_corpus.py
CHANGED
|
@@ -20,13 +20,27 @@ import datasets
|
|
| 20 |
|
| 21 |
|
| 22 |
_CITATION = """\
|
| 23 |
-
@
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
}
|
| 31 |
"""
|
| 32 |
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
_CITATION = """\
|
| 23 |
+
@inproceedings{armengol-estape-etal-2021-multilingual,
|
| 24 |
+
title = "Are Multilingual Models the Best Choice for Moderately Under-resourced Languages? {A} Comprehensive Assessment for {C}atalan",
|
| 25 |
+
author = "Armengol-Estap{\'e}, Jordi and
|
| 26 |
+
Carrino, Casimiro Pio and
|
| 27 |
+
Rodriguez-Penagos, Carlos and
|
| 28 |
+
de Gibert Bonet, Ona and
|
| 29 |
+
Armentano-Oller, Carme and
|
| 30 |
+
Gonzalez-Agirre, Aitor and
|
| 31 |
+
Melero, Maite and
|
| 32 |
+
Villegas, Marta",
|
| 33 |
+
booktitle = "Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021",
|
| 34 |
+
month = aug,
|
| 35 |
+
year = "2021",
|
| 36 |
+
address = "Online",
|
| 37 |
+
publisher = "Association for Computational Linguistics",
|
| 38 |
+
url = "https://aclanthology.org/2021.findings-acl.437",
|
| 39 |
+
doi = "10.18653/v1/2021.findings-acl.437",
|
| 40 |
+
pages = "4933--4946",
|
| 41 |
+
eprint={2107.07903},
|
| 42 |
+
archivePrefix={arXiv},
|
| 43 |
+
primaryClass={cs.CL}
|
| 44 |
}
|
| 45 |
"""
|
| 46 |
|