yuxuanw8 commited on
Commit
8f983d6
·
verified ·
1 Parent(s): 930c08d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-classification
4
+ ---
5
+ # So2Sat
6
+ **So2Sat** is a local climate zone (LCZ) classification task consisting of images from Sentinel-1 and Sentinel-2. We only keep Sentinel-2 images which have 10 MSI bands in this dataset. In addition, we reserve 10% of the training set as the validation set, resulting in 31,713 training samples, 3,523 validation samples and 48,307 test samples.
7
+
8
+ ## How to Use This Dataset
9
+ ```python
10
+ from datasets import load_dataset
11
+
12
+ dataset = load_dataset("GFM-Bench/So2Sat")
13
+ ```
14
+
15
+ Also, please see our [GFM-Bench](https://github.com/uiuctml/GFM-Bench) repository for more information about how to use the dataset! 🤗
16
+
17
+ ## Dataset Metadata
18
+
19
+ The following metadata provides details about the Sentinel-2 imagery used in the dataset:
20
+ <!--- **Number of Sentinel-1 Bands**: 2-->
21
+ <!--- **Sentinel-1 Bands**: VV, VH-->
22
+ - **Number of Sentinel-2 Bands**: 10
23
+ - **Sentinel-2 Bands**: B02 (**Blue**), B03 (**Green**), B04 (**Red**), B05 (**Vegetation red edge**), B06 (**Vegetation red edge**), B07 (**Vegetation red edge**), B08 (**NIR**), B8A (**Narrow NIR**), B11 (**SWIR**), B12 (**SWIR**)
24
+ - **Image Resolution**: 32 x 32 pixels
25
+ - **Spatial Resolution**: 10 meters
26
+ - **Number of Classes**: 17
27
+
28
+ ## Dataset Splits
29
+ The **So2Sat** dataset consists following splits:
30
+ - **train**: 31,713 samples
31
+ - **val**: 3,523 samples
32
+ - **test**: 48,307 samples
33
+
34
+ ## Dataset Features:
35
+ The **So2Sat** dataset consists of following features:
36
+ <!--- **radar**: the Sentinel-1 image.-->
37
+ - **optical**: the Sentinel-2 image.
38
+ - **label**: the classification label.
39
+ <!--- **radar_channel_wv**: the central wavelength of each Sentinel-1 bands.-->
40
+ - **optical_channel_wv**: the central wavelength of each Sentinel-2 bands.
41
+ - **spatial_resolution**: the spatial resolution of images.
42
+ ## Citation
43
+ If you use the So2Sat dataset in your work, please cite the original paper:
44
+ ```
45
+ @article{zhu2019so2sat,
46
+ title={So2Sat LCZ42: A benchmark dataset for global local climate zones classification},
47
+ author={Zhu, Xiao Xiang and Hu, Jingliang and Qiu, Chunping and Shi, Yilei and Kang, Jian and Mou, Lichao and Bagheri, Hossein and H{\"a}berle, Matthias and Hua, Yuansheng and Huang, Rong and others},
48
+ journal={arXiv preprint arXiv:1912.12171},
49
+ year={2019}
50
+ }
51
+ ```