Datasets:
License.
Browse files- README.md +14 -0
- korpus_malti.py +3 -0
README.md
CHANGED
@@ -18,6 +18,8 @@ task_categories:
|
|
18 |
task_ids:
|
19 |
- language-modeling
|
20 |
- masked-language-modeling
|
|
|
|
|
21 |
---
|
22 |
# Korpus Malti 🇲🇹
|
23 |
|
@@ -68,3 +70,15 @@ An instance from these configurations would take the following form:
|
|
68 |
The raw data files contain additional metadata.
|
69 |
Its structure differs from one instance to another, depending on what's available from the source.
|
70 |
This information was typically scraped from the source itself & minimal processing is performed on such data.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
task_ids:
|
19 |
- language-modeling
|
20 |
- masked-language-modeling
|
21 |
+
licenses:
|
22 |
+
- cc-by-nc-sa-4.0
|
23 |
---
|
24 |
# Korpus Malti 🇲🇹
|
25 |
|
|
|
70 |
The raw data files contain additional metadata.
|
71 |
Its structure differs from one instance to another, depending on what's available from the source.
|
72 |
This information was typically scraped from the source itself & minimal processing is performed on such data.
|
73 |
+
|
74 |
+
|
75 |
+
## License
|
76 |
+
|
77 |
+
This work is licensed under a
|
78 |
+
[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa].
|
79 |
+
Permissions beyond the scope of this license may be available at [https://mlrs.research.um.edu.mt/](https://mlrs.research.um.edu.mt/).
|
80 |
+
|
81 |
+
[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa]
|
82 |
+
|
83 |
+
[cc-by-nc-sa]: http://creativecommons.org/licenses/by-nc-sa/4.0/
|
84 |
+
[cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png
|
korpus_malti.py
CHANGED
@@ -10,6 +10,8 @@ General Corpora for the Maltese language.
|
|
10 |
|
11 |
_HOMEPAGE = "https://mlrs.research.um.edu.mt/"
|
12 |
|
|
|
|
|
13 |
_URL = "data/"
|
14 |
_SHUFFLED_URL = {
|
15 |
"train": os.path.join(_URL, "shuffled/train.txt"),
|
@@ -123,6 +125,7 @@ class KorpusMalti(datasets.GeneratorBasedBuilder):
|
|
123 |
description=_DESCRIPTION,
|
124 |
features=datasets.Features(features),
|
125 |
homepage=_HOMEPAGE,
|
|
|
126 |
)
|
127 |
|
128 |
def _split_generators(self, dl_manager):
|
|
|
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)"
|
14 |
+
|
15 |
_URL = "data/"
|
16 |
_SHUFFLED_URL = {
|
17 |
"train": os.path.join(_URL, "shuffled/train.txt"),
|
|
|
125 |
description=_DESCRIPTION,
|
126 |
features=datasets.Features(features),
|
127 |
homepage=_HOMEPAGE,
|
128 |
+
license=_LICENSE,
|
129 |
)
|
130 |
|
131 |
def _split_generators(self, dl_manager):
|