Datasets:
Tasks:
Text Classification
Sub-tasks:
natural-language-inference
Languages:
English
Size:
10K<n<100K
License:
Filippo B
commited on
Commit
•
ecf2698
1
Parent(s):
ab91fd6
Update with latest version from July 2023
Browse files- osdg_cd.py +11 -9
osdg_cd.py
CHANGED
@@ -28,25 +28,25 @@ logger = datasets.logging.get_logger(__name__)
|
|
28 |
|
29 |
|
30 |
_CITATION = """\
|
31 |
-
@dataset{
|
32 |
author = {OSDG and
|
33 |
UNDP IICPSD SDG AI Lab and
|
34 |
PPMI},
|
35 |
title = {OSDG Community Dataset (OSDG-CD)},
|
36 |
-
month =
|
37 |
-
year =
|
38 |
note = {{This CSV file uses UTF-8 character encoding. For
|
39 |
easy access on MS Excel, open the file using Data
|
40 |
→ From Text/CSV. Please split CSV data into
|
41 |
different columns by using a TAB delimiter.}},
|
42 |
publisher = {Zenodo},
|
43 |
-
version = {
|
44 |
-
doi = {10.5281/zenodo.
|
45 |
-
url = {https://doi.org/10.5281/zenodo.
|
46 |
}
|
47 |
"""
|
48 |
|
49 |
-
_HOMEPAGE = "https://doi.org/10.5281/zenodo.
|
50 |
|
51 |
_LICENSE = "https://creativecommons.org/licenses/by/4.0/"
|
52 |
|
@@ -63,12 +63,14 @@ _VERSIONS = {
|
|
63 |
"2022.07": "1.0.3",
|
64 |
"2022.10": "1.0.4",
|
65 |
"2023.01": "1.0.5",
|
|
|
|
|
66 |
}
|
67 |
|
68 |
-
_VERSION = _VERSIONS["2023.
|
69 |
|
70 |
_URLS = {
|
71 |
-
"train": "https://zenodo.org/record/7540165/files/osdg-community-data-v2023-
|
72 |
}
|
73 |
|
74 |
|
|
|
28 |
|
29 |
|
30 |
_CITATION = """\
|
31 |
+
@dataset{osdg_2023_8107038,
|
32 |
author = {OSDG and
|
33 |
UNDP IICPSD SDG AI Lab and
|
34 |
PPMI},
|
35 |
title = {OSDG Community Dataset (OSDG-CD)},
|
36 |
+
month = jul,
|
37 |
+
year = 2023,
|
38 |
note = {{This CSV file uses UTF-8 character encoding. For
|
39 |
easy access on MS Excel, open the file using Data
|
40 |
→ From Text/CSV. Please split CSV data into
|
41 |
different columns by using a TAB delimiter.}},
|
42 |
publisher = {Zenodo},
|
43 |
+
version = {2023.07},
|
44 |
+
doi = {10.5281/zenodo.8107038},
|
45 |
+
url = {https://doi.org/10.5281/zenodo.8107038}
|
46 |
}
|
47 |
"""
|
48 |
|
49 |
+
_HOMEPAGE = "https://doi.org/10.5281/zenodo.8107038"
|
50 |
|
51 |
_LICENSE = "https://creativecommons.org/licenses/by/4.0/"
|
52 |
|
|
|
63 |
"2022.07": "1.0.3",
|
64 |
"2022.10": "1.0.4",
|
65 |
"2023.01": "1.0.5",
|
66 |
+
"2023.04": "1.0.6",
|
67 |
+
"2023.07": "1.0.7",
|
68 |
}
|
69 |
|
70 |
+
_VERSION = _VERSIONS["2023.07"]
|
71 |
|
72 |
_URLS = {
|
73 |
+
"train": "https://zenodo.org/record/7540165/files/osdg-community-data-v2023-07-01.csv"
|
74 |
}
|
75 |
|
76 |
|