frgfm commited on
Commit
799e948
1 Parent(s): 42bda6f

docs: Updated README

Browse files
Files changed (1) hide show
  1. README.md +36 -31
README.md CHANGED
@@ -1,18 +1,18 @@
1
  ---
2
  annotations_creators:
3
  - crowdsourced
4
- language: []
 
5
  language_creators:
6
  - crowdsourced
7
  license:
8
  - apache-2.0
9
  multilinguality: []
10
- pretty_name: Wildfire image classification dataset collected using images from web
11
- searches.
12
  size_categories:
13
  - 1K<n<10K
14
  source_datasets:
15
- - original
16
  task_categories:
17
  - image-classification
18
  task_ids:
@@ -48,14 +48,13 @@ task_ids:
48
 
49
  ## Dataset Description
50
 
51
- - **Homepage:** https://pyronear.org/pyro-vision/datasets.html#openfire
52
- - **Repository:** https://github.com/pyronear/pyro-vision
53
- - **Point of Contact:** Pyronear <https://pyronear.org/en/>
54
 
55
  ### Dataset Summary
56
 
57
- OpenFire is an image classification dataset for wildfire detection, collected
58
- from web searches.
59
 
60
  ### Supported Tasks and Leaderboards
61
 
@@ -63,7 +62,7 @@ from web searches.
63
 
64
  ### Languages
65
 
66
- English
67
 
68
  ## Dataset Structure
69
 
@@ -73,67 +72,69 @@ A data point comprises an image URL and its binary label.
73
 
74
  ```
75
  {
76
- 'image_url': 'https://cdn-s-www.ledauphine.com/images/13C08274-6BA6-4577-B3A0-1E6C1B2A573C/FB1200/photo-1338240831.jpg',
77
- 'is_wildfire': true,
78
  }
79
  ```
80
 
81
  ### Data Fields
82
 
83
- - `image_url`: the download URL of the image.
84
- - `is_wildfire`: a boolean value specifying whether there is an ongoing wildfire on the image.
85
 
86
  ### Data Splits
87
 
88
- The data is split into training and validation sets. The training set contains 7143 images and the validation set 792 images.
 
 
 
89
 
90
  ## Dataset Creation
91
 
92
  ### Curation Rationale
93
 
94
- The curators state that the current wildfire classification datasets typically contain close-up shots of wildfires, with limited variations of weather conditions, luminosity and backrgounds,
95
- making it difficult to assess for real world performance. They argue that the limitations of datasets have partially contributed to the failure of some algorithms in coping
96
- with sun flares, foggy / cloudy weather conditions and small scale.
97
 
98
  ### Source Data
99
 
100
  #### Initial Data Collection and Normalization
101
 
102
- OpenFire was collected using images publicly indexed by the search engine DuckDuckGo using multiple relevant queries. The images were then manually cleaned to remove errors.
103
 
104
  ### Annotations
105
 
106
  #### Annotation process
107
 
108
- Each web search query was designed to yield a single label (with wildfire or without), and additional human verification was used to remove errors.
109
 
110
  #### Who are the annotators?
111
 
112
- François-Guillaume Fernandez
113
 
114
  ### Personal and Sensitive Information
115
 
116
- [More Information Needed]
117
 
118
  ## Considerations for Using the Data
119
 
120
  ### Social Impact of Dataset
121
 
122
- [More Information Needed]
123
 
124
  ### Discussion of Biases
125
 
126
- [More Information Needed]
127
 
128
  ### Other Known Limitations
129
 
130
- [More Information Needed]
131
 
132
  ## Additional Information
133
 
134
  ### Dataset Curators
135
 
136
- François-Guillaume Fernandez
 
137
 
138
  ### Licensing Information
139
 
@@ -142,12 +143,16 @@ François-Guillaume Fernandez
142
  ### Citation Information
143
 
144
  ```
145
- @software{Pyronear_PyroVision_2019,
146
- title={Pyrovision: wildfire early detection},
147
- author={Pyronear contributors},
148
  year={2019},
149
- month={October},
150
  publisher = {GitHub},
151
- howpublished = {\url{https://github.com/pyronear/pyro-vision}}
152
  }
153
  ```
 
 
 
 
 
1
  ---
2
  annotations_creators:
3
  - crowdsourced
4
+ language:
5
+ - en
6
  language_creators:
7
  - crowdsourced
8
  license:
9
  - apache-2.0
10
  multilinguality: []
11
+ pretty_name: Imagenette
 
12
  size_categories:
13
  - 1K<n<10K
14
  source_datasets:
15
+ - extended
16
  task_categories:
17
  - image-classification
18
  task_ids:
 
48
 
49
  ## Dataset Description
50
 
51
+ - **Homepage:** https://github.com/fastai/imagenette
52
+ - **Repository:** https://github.com/fastai/imagenette
53
+ - **Point of Contact:** Jeremy Howard <https://github.com/fastai/imagenette>
54
 
55
  ### Dataset Summary
56
 
57
+ A smaller subset of 10 easily classified classes from [Imagenet](https://huggingface.co/datasets/imagenet-1k#dataset-summary), and a little more French.
 
58
 
59
  ### Supported Tasks and Leaderboards
60
 
 
62
 
63
  ### Languages
64
 
65
+ The class labels in the dataset are in English.
66
 
67
  ## Dataset Structure
68
 
 
72
 
73
  ```
74
  {
75
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=1024x755 at 0x19FA12186D8>,
76
+ 'label': 'tench',
77
  }
78
  ```
79
 
80
  ### Data Fields
81
 
82
+ - `image`: A `PIL.Image.Image` object containing the image.
83
+ - `label`: the expected class label of the image.
84
 
85
  ### Data Splits
86
 
87
+ | |train|validation|
88
+ |----------|----:|---------:|
89
+ |imagenette| 9469| 3925|
90
+
91
 
92
  ## Dataset Creation
93
 
94
  ### Curation Rationale
95
 
96
+ cf. https://huggingface.co/datasets/imagenet-1k#curation-rationale
 
 
97
 
98
  ### Source Data
99
 
100
  #### Initial Data Collection and Normalization
101
 
102
+ Imagenette is a subset of [ImageNet](https://huggingface.co/datasets/imagenet-1k). Information about data collection of the source data can be found [here](https://huggingface.co/datasets/imagenet-1k#initial-data-collection-and-normalization).
103
 
104
  ### Annotations
105
 
106
  #### Annotation process
107
 
108
+ cf. https://huggingface.co/datasets/imagenet-1k#annotation-process
109
 
110
  #### Who are the annotators?
111
 
112
+ cf. https://huggingface.co/datasets/imagenet-1k#who-are-the-annotators
113
 
114
  ### Personal and Sensitive Information
115
 
116
+ cf. https://huggingface.co/datasets/imagenet-1k#personal-and-sensitive-information
117
 
118
  ## Considerations for Using the Data
119
 
120
  ### Social Impact of Dataset
121
 
122
+ cf. https://huggingface.co/datasets/imagenet-1k#social-impact-of-dataset
123
 
124
  ### Discussion of Biases
125
 
126
+ cf. https://huggingface.co/datasets/imagenet-1k#discussion-of-biases
127
 
128
  ### Other Known Limitations
129
 
130
+ cf. https://huggingface.co/datasets/imagenet-1k#other-known-limitations
131
 
132
  ## Additional Information
133
 
134
  ### Dataset Curators
135
 
136
+ cf. https://huggingface.co/datasets/imagenet-1k#dataset-curators
137
+ and Jeremy Howard
138
 
139
  ### Licensing Information
140
 
 
143
  ### Citation Information
144
 
145
  ```
146
+ @software{Howard_Imagenette_2019,
147
+ title={Imagenette: A smaller subset of 10 easily classified classes from Imagenet},
148
+ author={Jeremy Howard},
149
  year={2019},
150
+ month={March},
151
  publisher = {GitHub},
152
+ url = {https://github.com/fastai/imagenette}
153
  }
154
  ```
155
+
156
+ ### Contributions
157
+
158
+ This dataset was added to HuggingFace Datasets by [@frgfm](https://huggingface.co/frgfm).