jonathan-roberts1 commited on
Commit
9e619be
·
1 Parent(s): fea7a74

Updated README

Browse files
Files changed (1) hide show
  1. README.md +66 -65
README.md CHANGED
@@ -34,6 +34,8 @@ task_categories:
34
  pretty_name: SATellite ImageNet
35
  size_categories:
36
  - 100K<n<1M
 
 
37
  ---
38
 
39
  # Dataset Card for Dataset Name
@@ -42,93 +44,92 @@ size_categories:
42
 
43
  - **Homepage:** [https://satinbenchmark.github.io](https://satinbenchmark.github.io)
44
  - **Repository:**
45
- - **Paper:** [SATIN: A Multi-Task Metadataset for Classifying Satellite Imagery using Vision-Language Models](https://arxiv.org/abs/2206.07045)
46
- - **Leaderboard:**
47
 
48
  ### Dataset Summary
49
 
50
- This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
51
-
52
- ### Supported Tasks and Leaderboards
53
-
54
- [More Information Needed]
55
-
56
- ### Languages
57
-
58
- [More Information Needed]
59
 
60
  ## Dataset Structure
61
 
62
- ### Data Instances
63
-
64
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- ### Data Fields
 
67
 
68
- [More Information Needed]
 
 
69
 
70
- ### Data Splits
71
 
72
- [More Information Needed]
 
 
73
 
74
- ## Dataset Creation
 
 
 
75
 
76
- ### Curation Rationale
77
 
78
- [More Information Needed]
79
 
80
  ### Source Data
81
 
82
- #### Initial Data Collection and Normalization
83
-
84
- [More Information Needed]
85
-
86
- #### Who are the source language producers?
87
-
88
- [More Information Needed]
89
-
90
- ### Annotations
91
-
92
- #### Annotation process
93
-
94
- [More Information Needed]
95
-
96
- #### Who are the annotators?
97
-
98
- [More Information Needed]
99
-
100
- ### Personal and Sensitive Information
101
-
102
- [More Information Needed]
103
-
104
- ## Considerations for Using the Data
105
-
106
- ### Social Impact of Dataset
107
-
108
- [More Information Needed]
109
-
110
- ### Discussion of Biases
111
-
112
- [More Information Needed]
113
-
114
- ### Other Known Limitations
115
-
116
- [More Information Needed]
117
-
118
- ## Additional Information
119
 
120
  ### Dataset Curators
121
 
122
- [More Information Needed]
123
 
124
  ### Licensing Information
125
 
126
- [More Information Needed]
 
127
 
128
  ### Citation Information
129
 
130
- [More Information Needed]
131
-
132
- ### Contributions
133
-
134
- [More Information Needed]
 
 
34
  pretty_name: SATellite ImageNet
35
  size_categories:
36
  - 100K<n<1M
37
+ language:
38
+ - en
39
  ---
40
 
41
  # Dataset Card for Dataset Name
 
44
 
45
  - **Homepage:** [https://satinbenchmark.github.io](https://satinbenchmark.github.io)
46
  - **Repository:**
47
+ - **Paper:** [SATIN: A Multi-Task Metadataset for Classifying Satellite Imagery using Vision-Language Models]()
48
+ - **Leaderboard:** [https://satinbenchmark.github.io/leaderboard.md](https://satinbenchmark.github.io/leaderboard.md)
49
 
50
  ### Dataset Summary
51
 
52
+ SATIN (SATellite ImageNet) is a metadataset containing 27 constituent satellite and aerial image datasets spanning 6 distinct tasks: Land Cover, Land Use,
53
+ Hierarchical Land Use, Complex Scenes, Rare Scenes, and False Colour Scenes. The imagery is globally distributed, comprised of resolutions spanning 5 orders
54
+ of magnitude, multiple fields of view sizes, and over 250 distinct class labels.
 
 
 
 
 
 
55
 
56
  ## Dataset Structure
57
 
58
+ The SATIN benchmark is comprised of the following datasets:
59
+ #### Task 1: Land Cover
60
+ - SAT-4
61
+ - SAT-6
62
+ - NASC-TG2
63
+ #### Task 2: Land Use
64
+ - WHU-RS19
65
+ - RSSCN7
66
+ - RS_C11
67
+ - SIRI-WHU
68
+ - EuroSAT
69
+ - NWPU-RESISC45
70
+ - PatternNet
71
+ - RSD46-WHU
72
+ - GID
73
+ - CLRS
74
+ - Optimal-31
75
+ #### Task 3: Hierarchical Land Use
76
+ - Million-AID
77
+ - RSI-CB256
78
+ #### Task 4: Complex Scenes
79
+ - UC_Merced_LandUse_MultiLabel
80
+ - MLRSNet
81
+ - MultiScene
82
+ - AID_MultiLabel
83
+ #### Task 5: Rare Scenes
84
+ - Airbus-Wind-Turbines-Patches
85
+ - USTC_SmokeRS
86
+ - Canadian_Cropland
87
+ - Ships-In-Satellite-Imagery
88
+ - Satellite-Images-of-Hurricane-Damage
89
+ #### Task 6: False Colour Scenes
90
+ - Brazilian_Coffee_Scenes
91
+ - Brazilian_Cerrado-Savanna_Scenes
92
 
93
+ For ease of use and to avoid having to download the entire benchmark for each use, in this dataset repository, each of the 27 datasets is included as a separate
94
+ 'config'.
95
 
96
+ ### Example Usage
97
+ ```python
98
+ from datasets import load_dataset
99
 
 
100
 
101
+ hf_dataset = load_dataset('jonathan-roberts1/SATIN', DATASET_NAME, split='train') # for DATASET_NAME use one of the configs listed above (e.g., EuroSAT)
102
+ features = hf_dataset.features
103
+ class_labels = features['label'].names # Note for the Hierarchical Land Use datasets, the label field is replaced with label1, label2, ...
104
 
105
+ random_index = 5
106
+ example = hf_dataset[random_index]
107
+ image, label = example['image'], example['label']
108
+ ```
109
 
110
+ ### Data Splits
111
 
112
+ For each config, there is just the single, default ``train'' split.
113
 
114
  ### Source Data
115
 
116
+ More information regarding the source data can be found in our paper. Additionally, each of the constituent datasets have been uploaded to HuggingFace datasets.
117
+ They can be accessed at: huggingface.co/datasets/jonathan-roberts1/DATASET_NAME.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  ### Dataset Curators
120
 
121
+ This dataset was curated by Jonathan Roberts, Kai Han, and Samuel Albanie
122
 
123
  ### Licensing Information
124
 
125
+ As SATIN is comprised of existing datasets with differing licenses, there is not a single license for SATIN. All of the datasets in SATIN can be used
126
+ for research purposes; usage information of specific constituent datasets can be found in the Appendix of our paper.
127
 
128
  ### Citation Information
129
 
130
+ @article{roberts2023satin,
131
+ title = {SATIN: A Multi-Task Metadataset for Classifying Satellite Imagery using Vision-Language Models},
132
+ author = {Jonathan Roberts, Kai Han, and Samuel Albanie},
133
+ year = {2023},
134
+ journal = {arXiv preprint arXiv:INSERT_NUM}
135
+ }