blanchon commited on
Commit
36ea37b
1 Parent(s): f39bcd8

🤗 Add DatasetCard

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: unknown
4
+ task_categories:
5
+ - image-classification
6
+ paperswithcode_id: firerisk
7
+ pretty_name: FireRisk
8
+ tags:
9
+ - remote-sensing
10
+ - earth-observation
11
+ - geospatial
12
+ - aerial-imagery
13
+ - land-cover-classification
14
+ ---
15
+
16
+ # FireRisk
17
+
18
+ <!-- Dataset thumbnail -->
19
+ ![FireRisk](./thumbnail.jpg)
20
+
21
+ <!-- Provide a quick summary of the dataset. -->
22
+ The FireRisk dataset is a dataset for remote sensing fire risk classification.
23
+ - **Paper:** https://arxiv.org/abs/2303.07035
24
+ - **Homepage:** https://github.com/CharmonyShen/FireRisk
25
+
26
+ ## Description
27
+
28
+ <!-- Provide a longer summary of what this dataset is. -->
29
+
30
+
31
+ - **Total Number of Images**: 91872
32
+ - **Bands**: 3 (RGB)
33
+ - **Image Size**: 320x320
34
+ - **101,878 tree annotations**
35
+ - **Image Resolution**: 1m
36
+ - **Land Cover Classes**: 7
37
+ - **Classes**: high, low, moderate, non-burnable, very_high, very_low, water
38
+ - **Source**: NAIP Aerial
39
+
40
+
41
+ ## Usage
42
+
43
+ To use this dataset, simply use `datasets.load_dataset("blanchon/FireRisk")`.
44
+ <!-- Provide any additional information on how to use this dataset. -->
45
+ ```python
46
+ from datasets import load_dataset
47
+ FireRisk = load_dataset("blanchon/FireRisk")
48
+ ```
49
+
50
+ ## Citation
51
+
52
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
53
+ If you use the EuroSAT dataset in your research, please consider citing the following publication:
54
+
55
+
56
+ ```bibtex
57
+ @article{shen2023firerisk,
58
+ title = {FireRisk: A Remote Sensing Dataset for Fire Risk Assessment with Benchmarks Using Supervised and Self-supervised Learning},
59
+ author = {Shuchang Shen and Sachith Seneviratne and Xinye Wanyan and Michael Kirley},
60
+ year = {2023},
61
+ journal = {arXiv preprint arXiv: 2303.07035}
62
+ }
63
+ ```