FranciscoLozDataScience commited on
Commit
fe8bfda
·
1 Parent(s): 03a7289

added license

Browse files
Files changed (2) hide show
  1. README.md +1 -0
  2. solarirradiancedataset.py +4 -4
README.md CHANGED
@@ -13,6 +13,7 @@ dataset_info:
13
  dataset_size: 13466250
14
  tags:
15
  - climate
 
16
  ---
17
  # Estimating Solar Irradiance with Image Regression
18
  - **Homepage:** [Sage Continuum](https://sagecontinuum.org/)
 
13
  dataset_size: 13466250
14
  tags:
15
  - climate
16
+ license: mit
17
  ---
18
  # Estimating Solar Irradiance with Image Regression
19
  - **Homepage:** [Sage Continuum](https://sagecontinuum.org/)
solarirradiancedataset.py CHANGED
@@ -26,8 +26,8 @@ original 2000x2000 images to 500x500 images since the training was taking a bit
26
  """
27
  _HOMEPAGE = "https://sagecontinuum.org/"
28
 
29
- # TODO: Add the licence for the dataset here if you can find it
30
- # _LICENSE = ""
31
 
32
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
33
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
@@ -51,9 +51,9 @@ class SolarIrradianceDataset(datasets.GeneratorBasedBuilder):
51
  }
52
  ),
53
  # Homepage of the dataset for documentation
54
- homepage=_HOMEPAGE
55
  # License for the dataset if available
56
- # license=_LICENSE
57
  # Citation for the dataset
58
  # citation=_CITATION,
59
  )
 
26
  """
27
  _HOMEPAGE = "https://sagecontinuum.org/"
28
 
29
+
30
+ _LICENSE = "MIT"
31
 
32
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
33
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
 
51
  }
52
  ),
53
  # Homepage of the dataset for documentation
54
+ homepage=_HOMEPAGE,
55
  # License for the dataset if available
56
+ license=_LICENSE
57
  # Citation for the dataset
58
  # citation=_CITATION,
59
  )