FranciscoLozDataScience commited on
Commit
48d8d15
1 Parent(s): 55eed48

added license

Browse files
Files changed (2) hide show
  1. README.md +1 -0
  2. smokedataset.py +3 -4
README.md CHANGED
@@ -28,6 +28,7 @@ task_categories:
28
  - image-classification
29
  task_ids:
30
  - multi-label-image-classification
 
31
  ---
32
 
33
  # COMPARING SIMPLE DEEP LEARNING MODELS TO A COMPLEX MODEL FOR SMOKE DETECTION
 
28
  - image-classification
29
  task_ids:
30
  - multi-label-image-classification
31
+ license: mit
32
  ---
33
 
34
  # COMPARING SIMPLE DEEP LEARNING MODELS TO A COMPLEX MODEL FOR SMOKE DETECTION
smokedataset.py CHANGED
@@ -12,8 +12,7 @@ Images collected using Wild Sage Nodes to detect wild fires.
12
 
13
  _HOMEPAGE = "https://sagecontinuum.org/"
14
 
15
- # TODO: Add the licence for the dataset here if you can find it
16
- # _LICENSE = ""
17
 
18
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
19
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
@@ -46,9 +45,9 @@ class smokedataset(datasets.GeneratorBasedBuilder):
46
  # specify them. They'll be used if as_supervised=True in builder.as_dataset.
47
  supervised_keys=("image", "label"),
48
  # Homepage of the dataset for documentation
49
- homepage=_HOMEPAGE
50
  # License for the dataset if available
51
- # license=_LICENSE
52
  # Citation for the dataset
53
  # citation=_CITATION,
54
  )
 
12
 
13
  _HOMEPAGE = "https://sagecontinuum.org/"
14
 
15
+ _LICENSE = "MIT"
 
16
 
17
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
18
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
 
45
  # specify them. They'll be used if as_supervised=True in builder.as_dataset.
46
  supervised_keys=("image", "label"),
47
  # Homepage of the dataset for documentation
48
+ homepage=_HOMEPAGE,
49
  # License for the dataset if available
50
+ license=_LICENSE
51
  # Citation for the dataset
52
  # citation=_CITATION,
53
  )