Datasets:
MLRS
/

Modalities:
Text
Languages:
Maltese
Libraries:
Datasets
License:
KurtMica commited on
Commit
cc1c062
1 Parent(s): 65ee4f7
Files changed (3) hide show
  1. README.md +22 -11
  2. dataset_infos.json +0 -0
  3. 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
- The dataset was created by [Albert Gatt](https://albertgatt.github.io), Kurt Micallef, [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).
 
79
 
80
  ### Licensing Information
81
- This work is licensed under a
82
- [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa].
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{bertu:deeplo2022,
93
- Author = {Micallef, Kurt and Gatt, Albert and Tanti, Marc and van der Plas, Lonneke and Borg, Claudia},
94
- Booktitle = {Proceedings of the 3rd Workshop on Deep Learning for Low Resource NLP (DeepLo)},
95
- Publisher = {Association for Computational Linguistics},
96
- Title = {Pre-training Data Quality and Quantity for a Low-Resource Language: New Corpus and BERT Models for Maltese},
97
- Year = {2022}
 
 
 
 
 
 
 
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