alkzar90 commited on
Commit
d66b32a
1 Parent(s): 9b958a1

Add dataaset card template

Browse files
Files changed (1) hide show
  1. README.md +155 -0
README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - human-curator
4
+ language:
5
+ - en
6
+ license:
7
+ - mit
8
+ pretty_name: RockGlacier
9
+ size_categories:
10
+ - 1K<n<10K
11
+ source_datasets:
12
+ - original
13
+ task_categories:
14
+ - image-classification
15
+ task_ids:
16
+ - multi-class-image-classification
17
+ ---
18
+ # Dataset Card for Rock Glacier Detection
19
+ ## Table of Contents
20
+ - [Table of Contents](#table-of-contents)
21
+ - [Dataset Description](#dataset-description)
22
+ - [Dataset Summary](#dataset-summary)
23
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
24
+ - [Languages](#languages)
25
+ - [Dataset Structure](#dataset-structure)
26
+ - [Data Instances](#data-instances)
27
+ - [Data Fields](#data-fields)
28
+ - [Data Splits](#data-splits)
29
+ - [Dataset Creation](#dataset-creation)
30
+ - [Curation Rationale](#curation-rationale)
31
+ - [Source Data](#source-data)
32
+ - [Annotations](#annotations)
33
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
34
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
35
+ - [Social Impact of Dataset](#social-impact-of-dataset)
36
+ - [Discussion of Biases](#discussion-of-biases)
37
+ - [Other Known Limitations](#other-known-limitations)
38
+ - [Additional Information](#additional-information)
39
+ - [Dataset Curators](#dataset-curators)
40
+ - [Licensing Information](#licensing-information)
41
+ - [Citation Information](#citation-information)
42
+ - [Contributions](#contributions)
43
+ ## Dataset Description
44
+ - **Homepage:** [RockGlacier Homepage](https://github.com/alcazar90/rock-glacier-detection)
45
+ - **Repository:** [alcazar90/rock-glacier-detection](https://github.com/alcazar90/rock-glacier-detection)
46
+ - **Paper:** N/A
47
+ - **Leaderboard:** N/A
48
+ - **Point of Contact:** N/A
49
+ ### Dataset Summary
50
+ Rock Glacier Detection dataset with satelital images of rock glaciers in the Chilean Andes.
51
+ ### Supported Tasks and Leaderboards
52
+ - `image-classification`: Based on a satelitel images (from sentinel2), the goal of this task is to predict a rock glacier in the geographic area, if there any.
53
+ ### Languages
54
+ English
55
+ ## Dataset Structure
56
+ ### Data Instances
57
+ A sample from the training set is provided below:
58
+ ```
59
+ {
60
+ 'image': <PIL.PngImagePlugin.PngImageFile image mode=RGBA size=128x128 at 0x7FE652BE2FD0>,
61
+ 'labels': 0
62
+ }
63
+ ```
64
+ ### Data Fields
65
+
66
+ The data instances have the following fields:
67
+
68
+ - `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]`.
69
+ - `labels`: an `int` classification label.
70
+
71
+ Class Label Mappings:
72
+
73
+ ```json
74
+ {
75
+ "glaciar": 0,
76
+ "cordillera": 1
77
+ }
78
+ ```
79
+
80
+ ### Data Splits
81
+
82
+
83
+ | |train|validation|test|
84
+ |-------------|----:|---------:|---:|
85
+ |# of examples|1456 |364 |NA |
86
+
87
+ ## Dataset Creation
88
+
89
+ ### Curation Rationale
90
+
91
+ [More Information Needed]
92
+
93
+ ### Source Data
94
+
95
+ #### Initial Data Collection and Normalization
96
+
97
+ [More Information Needed]
98
+
99
+ #### Who are the source language producers?
100
+
101
+ [More Information Needed]
102
+
103
+ ### Annotations
104
+
105
+ #### Annotation process
106
+
107
+ [More Information Needed]
108
+
109
+ #### Who are the annotators?
110
+
111
+ [More Information Needed]
112
+
113
+ ### Personal and Sensitive Information
114
+
115
+ [More Information Needed]
116
+
117
+ ## Considerations for Using the Data
118
+
119
+ ### Social Impact of Dataset
120
+
121
+ [More Information Needed]
122
+
123
+ ### Discussion of Biases
124
+
125
+ [More Information Needed]
126
+
127
+ ### Other Known Limitations
128
+
129
+ [More Information Needed]
130
+
131
+ ## Additional Information
132
+
133
+ ### Dataset Curators
134
+
135
+ [More Information Needed]
136
+
137
+ ### Licensing Information
138
+
139
+ [More Information Needed]
140
+
141
+ ### Citation Information
142
+
143
+ ```
144
+ @ONLINE {rock-glacier-dataset,
145
+ author="CMM - Glaciares (UChile)",
146
+ title="Rock Glacier Dataset",
147
+ month="October",
148
+ year="2022",
149
+ url="https://github.com/alcazar90/rock-glacier-detection"
150
+ }
151
+ ```
152
+
153
+ ### Contributions
154
+
155
+ Thanks to...