kevincluo commited on
Commit
a65d972
·
1 Parent(s): 2184904

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -10
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  configs:
3
  - config_name: default
4
  data_files:
@@ -14,17 +15,78 @@ dataset_info:
14
  names:
15
  '0': affected
16
  '1': destroyed
17
- '2': inaccessible
18
- '3': major
19
- '4': minor
20
- '5': no_damage
21
  splits:
22
  - name: train
23
- num_bytes: 4284787950.962
24
- num_examples: 18714
25
- download_size: 5079791037
26
- dataset_size: 4284787950.962
 
 
 
 
 
 
 
27
  ---
28
- # Dataset Card for "california_fire_damage_classification_merged"
29
 
30
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
  configs:
4
  - config_name: default
5
  data_files:
 
15
  names:
16
  '0': affected
17
  '1': destroyed
18
+ '2': major
19
+ '3': minor
20
+ '4': no_damage
 
21
  splits:
22
  - name: train
23
+ num_bytes: 125229532
24
+ num_examples: 355
25
+ download_size: 125234000
26
+ dataset_size: 125229532
27
+ language:
28
+ - en
29
+ tags:
30
+ - climate
31
+ - wildfire
32
+ - image classification
33
+ - damage assessment
34
  ---
 
35
 
36
+ # Dataset Card for Structures Damaged by Wildfire
37
+
38
+ **Homepage:** [Image Dataset of Structures Damaged by Wildfire in California 2020-2022](https://zenodo.org/record/8336570)
39
+
40
+
41
+ ### Dataset Summary
42
+ The dataset contains over 18,000 images of homes damaged by wildfire between 2020 and 2022 in California, USA, captured by the California Department of Forestry and Fire Protection (Cal Fire) during the damage assessment process. The dataset spans across more than 18 wildfire events, including the 2020 August Complex Fire, the first recorded "gigafire" event in California where the area burned exceeded 1 million acres. Each image, corresponding to a built structure, is classified by government damage assessors into 5 different categories: No Damage, Affected (1-9%), Minor (10-25%), Major (26-50%), and Destroyed (>50%). While over 57,000 structures were evaluated during the damage assessment process, only about 18,000 contains images; additional data about the structures, such as the street address or structure materials, for both those with and without corresponding images can be accessed in the "Additional Attribute Data" file.
43
+
44
+ The 18 wildfire events captured in the dataset are:
45
+
46
+ - [AUG] August Complex (2020)
47
+ - [BEA] Bear Fire (2020)
48
+ - [BEU] BEU Lightning Complex Fire (2020)
49
+ - [CAL] Caldor Fire (2021)
50
+ - [CAS] Castle Fire (2020)
51
+ - [CRE] Creek Fire (2020)
52
+ - [DIN] DINS Statewide (Collection of Smaller Fires, 2021)
53
+ - [DIX[ Dixie Fire (2021)
54
+ - [FAI] Fairview Fire (2022)
55
+ - [FOR] Fork Fire (2022)
56
+ - [GLA] Glass Fire (2020)
57
+ - [MIL] Mill Mountain Fire (2022)
58
+ - [MON] Monument Fire (2021)
59
+ - [MOS] Mosquito Fire (2022)
60
+ - [POST] Post Fire (2020)
61
+ - [SCU] SCU Complex Fire (2020)
62
+ - [VAL] Valley Fire (2020)
63
+ - [ZOG] Zogg Fire (2020)
64
+
65
+ The author retrieved the data, originally published as GIS features layers, from from the publicly accessible CAL FIRE Hub, then subsequently processed it into image and tabular formats. The author collaborated with Cal Fire in working with the data, and has received explicit permission for republication.
66
+
67
+
68
+
69
+ ### Data Fields
70
+
71
+ The data instances have the following fields:
72
+
73
+ - `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`.
74
+ - `labels`: an `int` classification label.
75
+
76
+ Class Label Mappings:
77
+
78
+ ```
79
+ {
80
+ "affected": 0,
81
+ "destroyed": 1,
82
+ "major": 2,
83
+ "minor": 3,
84
+ "no_damage": 4,
85
+ }
86
+ ```
87
+
88
+ ### Data Splits
89
+
90
+ | | train |
91
+ |---------------|------:|
92
+ | # of examples | 18,714 |