Filippo B commited on
Commit
ecf2698
1 Parent(s): ab91fd6

Update with latest version from July 2023

Browse files
Files changed (1) hide show
  1. 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{osdg_2022_6393942,
32
  author = {OSDG and
33
  UNDP IICPSD SDG AI Lab and
34
  PPMI},
35
  title = {OSDG Community Dataset (OSDG-CD)},
36
- month = apr,
37
- year = 2022,
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 = {2022.04},
44
- doi = {10.5281/zenodo.6393942},
45
- url = {https://doi.org/10.5281/zenodo.6393942}
46
  }
47
  """
48
 
49
- _HOMEPAGE = "https://doi.org/10.5281/zenodo.6393942"
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.01"]
69
 
70
  _URLS = {
71
- "train": "https://zenodo.org/record/7540165/files/osdg-community-data-v2023-01-01.csv"
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