Datasets:
Citation.
Browse files- README.md +22 -11
- dataset_infos.json +0 -0
- korpus_malti.py +18 -0
README.md
CHANGED
@@ -75,11 +75,12 @@ This information was typically scraped from the source itself & minimal processi
|
|
75 |
## Additional Information
|
76 |
|
77 |
### Dataset Curators
|
78 |
-
|
|
|
79 |
|
80 |
### Licensing Information
|
81 |
-
|
82 |
-
|
83 |
Permissions beyond the scope of this license may be available at [https://mlrs.research.um.edu.mt/](https://mlrs.research.um.edu.mt/).
|
84 |
|
85 |
[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa]
|
@@ -88,13 +89,23 @@ Permissions beyond the scope of this license may be available at [https://mlrs.r
|
|
88 |
[cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png
|
89 |
|
90 |
### Citation Information
|
|
|
|
|
|
|
|
|
91 |
```bibtex
|
92 |
-
@inproceedings{
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
-
|
100 |
-
```
|
|
|
75 |
## Additional Information
|
76 |
|
77 |
### Dataset Curators
|
78 |
+
|
79 |
+
The dataset was created by [Albert Gatt](https://albertgatt.github.io), [Kurt Micallef](https://www.um.edu.mt/profile/kurtmicallef), [Marc Tanti](https://www.um.edu.mt/profile/marctanti), [Lonneke van der Plas](https://sites.google.com/site/lonnekenlp/) and [Claudia Borg](https://www.um.edu.mt/profile/claudiaborg).
|
80 |
|
81 |
### Licensing Information
|
82 |
+
|
83 |
+
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa].
|
84 |
Permissions beyond the scope of this license may be available at [https://mlrs.research.um.edu.mt/](https://mlrs.research.um.edu.mt/).
|
85 |
|
86 |
[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa]
|
|
|
89 |
[cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png
|
90 |
|
91 |
### Citation Information
|
92 |
+
|
93 |
+
This work was first presented in [Pre-training Data Quality and Quantity for a Low-Resource Language: New Corpus and BERT Models for Maltese](https://arxiv.org/abs/2205.10517).
|
94 |
+
Cite it as follows:
|
95 |
+
|
96 |
```bibtex
|
97 |
+
@inproceedings{BERTu,
|
98 |
+
title = {Pre-training Data Quality and Quantity for a Low-Resource Language: New Corpus and {BERT} Models for {M}altese},
|
99 |
+
author = {Micallef, Kurt and
|
100 |
+
Gatt, Albert and
|
101 |
+
Tanti, Marc and
|
102 |
+
van der Plas, Lonneke and
|
103 |
+
Borg, Claudia},
|
104 |
+
booktitle = {Proceedings of the 3rd Workshop on Deep Learning for Low-Resource NLP (DeepLo 2022)},
|
105 |
+
day = {14},
|
106 |
+
month = {07},
|
107 |
+
year = {2022},
|
108 |
+
address = {Seattle, Washington},
|
109 |
+
publisher = {Association for Computational Linguistics},
|
110 |
}
|
111 |
+
```
|
|
dataset_infos.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
korpus_malti.py
CHANGED
@@ -8,6 +8,23 @@ _DESCRIPTION = """\
|
|
8 |
General Corpora for the Maltese language.
|
9 |
"""
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
_HOMEPAGE = "https://mlrs.research.um.edu.mt/"
|
12 |
|
13 |
_LICENSE = "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)"
|
@@ -125,6 +142,7 @@ class KorpusMalti(datasets.GeneratorBasedBuilder):
|
|
125 |
description=_DESCRIPTION,
|
126 |
features=datasets.Features(features),
|
127 |
homepage=_HOMEPAGE,
|
|
|
128 |
license=_LICENSE,
|
129 |
)
|
130 |
|
|
|
8 |
General Corpora for the Maltese language.
|
9 |
"""
|
10 |
|
11 |
+
_CITATION = """\
|
12 |
+
@inproceedings{BERTu,
|
13 |
+
title = {Pre-training Data Quality and Quantity for a Low-Resource Language: New Corpus and {BERT} Models for {M}altese},
|
14 |
+
author = {Micallef, Kurt and
|
15 |
+
Gatt, Albert and
|
16 |
+
Tanti, Marc and
|
17 |
+
van der Plas, Lonneke and
|
18 |
+
Borg, Claudia},
|
19 |
+
booktitle = {Proceedings of the 3rd Workshop on Deep Learning for Low-Resource NLP (DeepLo 2022)},
|
20 |
+
day = {14},
|
21 |
+
month = {07},
|
22 |
+
year = {2022},
|
23 |
+
address = {Seattle, Washington},
|
24 |
+
publisher = {Association for Computational Linguistics},
|
25 |
+
}
|
26 |
+
"""
|
27 |
+
|
28 |
_HOMEPAGE = "https://mlrs.research.um.edu.mt/"
|
29 |
|
30 |
_LICENSE = "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)"
|
|
|
142 |
description=_DESCRIPTION,
|
143 |
features=datasets.Features(features),
|
144 |
homepage=_HOMEPAGE,
|
145 |
+
citation=_CITATION,
|
146 |
license=_LICENSE,
|
147 |
)
|
148 |
|