antofuller commited on
Commit
5d98df2
·
1 Parent(s): 55964bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -1
README.md CHANGED
@@ -2,15 +2,30 @@ This repository contains preprocessed data from the paper *CROMA: Remote Sensing
2
 
3
  We did not create these datasets—if you use them, please cite the original papers!
4
 
5
- All data is stored as PyTorch tensors; images are normalized 8-bit integers. To use these data with CROMA, convert tensors to floats and divide by 255.
6
 
7
  **DFC 2020**
 
 
 
 
 
 
 
 
8
  ```bib
9
  Naoto Yokoya, Pedram Ghamisi, Ronny Hänsch, and Michael Schmitt.
10
  2020 IEEE GRSS Data Fusion Contest: Global Land Cover Mapping With Weak Supervision.
11
  IEEE Geoscience and Remote Sensing Magazine, 2020.
12
  ```
13
  **Dynamic World (DW) — Expert**
 
 
 
 
 
 
 
14
  ```bib
15
  Christopher F Brown, Steven P Brumby, Brookie Guzder-Williams, Tanya Birch, Samantha Brooks Hyde,
16
  Joseph Mazzariello, Wanda Czerwinski, Valerie J Pasquarella, Robert Haertel, Simon Ilyushchenko, et al.
@@ -18,13 +33,62 @@ Dynamic World, Near real-time global 10 m land use land cover mapping.
18
  Scientific Data, 2022.
19
  ```
20
  **MARIDA**
 
 
 
 
 
 
 
21
  ```bib
22
  Katerina Kikaki, Ioannis Kakogeorgiou, Paraskevi Mikeli, Dionysios E Raitsos, and Konstantinos Karantzalos.
23
  MARIDA: A benchmark for Marine Debris detection from Sentinel-2 remote sensing data.
24
  PloS one, 2022.
25
  ```
26
  **Canadian Cropland**
 
 
 
 
 
 
 
 
 
 
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  ```bib
29
  Amanda A Boatswain Jacques, Abdoulaye Baniré Diallo, and Etienne Lord.
30
  Towards the Creation of a Canadian Land-Use Dataset for Agricultural Land Classification.
 
2
 
3
  We did not create these datasets—if you use them, please cite the original papers!
4
 
5
+ All data is stored as PyTorch tensors (inside python dictionaries); images are normalized 8-bit integers. To use these data with CROMA, convert tensors to floats and divide by 255.
6
 
7
  **DFC 2020**
8
+ ```python
9
+ dfc = torch.load("DFC_preprocessed.pt") # pixel annotations with 8 classes
10
+ train_images = dfc["train_images"] # shape (46_152, 14, 96, 96), first 12 channels are S2, last 2 channels are S1
11
+ train_labels = dfc["train_labels"] # shape (46_152, 96, 96)
12
+ validation_images = dfc["validation_images"] # shape (8_874, 14, 96, 96), first 12 channels are S2, last 2 channels are S1
13
+ validation_labels = dfc["validation_labels"] # shape (8_874, 96, 96)
14
+ ```
15
+
16
  ```bib
17
  Naoto Yokoya, Pedram Ghamisi, Ronny Hänsch, and Michael Schmitt.
18
  2020 IEEE GRSS Data Fusion Contest: Global Land Cover Mapping With Weak Supervision.
19
  IEEE Geoscience and Remote Sensing Magazine, 2020.
20
  ```
21
  **Dynamic World (DW) — Expert**
22
+ ```python
23
+ dw = torch.load("DynamicWorld_Expert_preprocessed.pt") # pixel annotations with 9 classes (-1 as not-labeled)
24
+ train_images = dw["train_images"] # shape (20_422, 14, 96, 96), first 12 channels are S2, last 2 channels are S1
25
+ train_labels = dw["train_labels"] # shape (20_422, 96, 96)
26
+ validation_images = dw["val_images"] # shape (51_022, 14, 96, 96), first 12 channels are S2, last 2 channels are S1
27
+ validation_labels = dw["val_labels"] # shape (51_022, 96, 96)
28
+ ```
29
  ```bib
30
  Christopher F Brown, Steven P Brumby, Brookie Guzder-Williams, Tanya Birch, Samantha Brooks Hyde,
31
  Joseph Mazzariello, Wanda Czerwinski, Valerie J Pasquarella, Robert Haertel, Simon Ilyushchenko, et al.
 
33
  Scientific Data, 2022.
34
  ```
35
  **MARIDA**
36
+ ```python
37
+ marida = torch.load("MARIDA_preprocessed.pt") # pixel annotations with 15 classes (-1 as not-labeled)
38
+ train_images = marida["train_images"] # shape (1_682, 11, 96, 96)
39
+ train_labels = marida["train_labels"] # shape (1_682, 96, 96)
40
+ validation_images = marida["validation_images"] # shape (1_615, 11, 96, 96)
41
+ validation_labels = marida["validation_labels"] # shape (1_615, 96, 96)
42
+ ```
43
  ```bib
44
  Katerina Kikaki, Ioannis Kakogeorgiou, Paraskevi Mikeli, Dionysios E Raitsos, and Konstantinos Karantzalos.
45
  MARIDA: A benchmark for Marine Debris detection from Sentinel-2 remote sensing data.
46
  PloS one, 2022.
47
  ```
48
  **Canadian Cropland**
49
+ ```python
50
+ crops = torch.load("Canadian_Cropland_preprocessed.pt") # image annotations with 10 classes
51
+
52
+ # 2017
53
+ train_images_2017 = crops["2017"]["train_imgs"] # shape (9_898, 13, 65, 65)
54
+ train_labels_2017 = crops["2017"]["train_labels"] # shape (9_898)
55
+ validation_images_2017 = crops["2017"]["val_imgs"] # shape (2_075, 13, 65, 65)
56
+ validation_labels_2017 = crops["2017"]["val_labels"] # shape (2_075)
57
+ test_images_2017 = crops["2017"]["test_imgs"] # shape (2_138, 13, 65, 65)
58
+ test_labels_2017 = crops["2017"]["test_labels"] # shape (2_138)
59
 
60
+ # 2018
61
+ train_images_2018 = crops["2018"]["train_imgs"] # shape (12_789, 13, 65, 65)
62
+ train_labels_2018 = crops["2018"]["train_labels"] # shape (12_789)
63
+ validation_images_2018 = crops["2018"]["val_imgs"] # shape (2_714, 13, 65, 65)
64
+ validation_labels_2018 = crops["2018"]["val_labels"] # shape (2_714)
65
+ test_images_2018 = crops["2018"]["test_imgs"] # shape (2_822, 13, 65, 65)
66
+ test_labels_2018 = crops["2018"]["test_labels"] # shape (2_822)
67
+
68
+ # 2019a
69
+ train_images_2019a = crops["2019a"]["train_imgs"] # shape (11_628, 12, 65, 65)
70
+ train_labels_2019a = crops["2019a"]["train_labels"] # shape (11_628)
71
+ validation_images_2019a = crops["2019a"]["val_imgs"] # shape (2_486, 12, 65, 65)
72
+ validation_labels_2019a = crops["2019a"]["val_labels"] # shape (2_486)
73
+ test_images_2019a = crops["2019a"]["test_imgs"] # shape (2_517, 12, 65, 65)
74
+ test_labels_2019a = crops["2019a"]["test_labels"] # shape (2_517)
75
+
76
+ # 2019b
77
+ train_images_2019b = crops["2019b"]["train_imgs"] # shape (4_094, 13, 65, 65)
78
+ train_labels_2019b = crops["2019b"]["train_labels"] # shape (4_094)
79
+ validation_images_2019b = crops["2019b"]["val_imgs"] # shape (821, 13, 65, 65)
80
+ validation_labels_2019b = crops["2019b"]["val_labels"] # shape (821)
81
+ test_images_2019b = crops["2019b"]["test_imgs"] # shape (858, 13, 65, 65)
82
+ test_labels_2019b = crops["2019b"]["test_labels"] # shape (858)
83
+
84
+ # 2020
85
+ train_images_2020 = crops["2020"]["train_imgs"] # shape (15_475, 12, 65, 65)
86
+ train_labels_2020 = crops["2020"]["train_labels"] # shape (15_475)
87
+ validation_images_2020 = crops["2020"]["val_imgs"] # shape (3_318, 12, 65, 65)
88
+ validation_labels_2020 = crops["2020"]["val_labels"] # shape (3_318)
89
+ test_images_2020 = crops["2020"]["test_imgs"] # shape (3_339, 12, 65, 65)
90
+ test_labels_2020 = crops["2020"]["test_labels"] # shape (3_339)
91
+ ```
92
  ```bib
93
  Amanda A Boatswain Jacques, Abdoulaye Baniré Diallo, and Etienne Lord.
94
  Towards the Creation of a Canadian Land-Use Dataset for Agricultural Land Classification.