inie2003 commited on
Commit
5876c1c
·
verified ·
1 Parent(s): 1f0cc7e

Updated README.md with embeddings.dat column data and use cases

Browse files
Files changed (1) hide show
  1. README.md +39 -90
README.md CHANGED
@@ -41,11 +41,39 @@ c) no pre-training, no labelling happened in the preparation of this dataset
41
 
42
  <!-- Address questions around how the dataset is intended to be used. -->
43
 
44
- ### Direct Use
45
 
46
- <!-- This section describes suitable use cases for the dataset. -->
47
 
48
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
 
51
 
@@ -67,92 +95,13 @@ c) no pre-training, no labelling happened in the preparation of this dataset
67
 
68
  **Embedding.dat**
69
 
 
 
 
 
 
 
 
 
70
 
71
 
72
- ## Dataset Creation
73
-
74
- ### Curation Rationale
75
-
76
- <!-- Motivation for the creation of this dataset. -->
77
-
78
- [More Information Needed]
79
-
80
- ### Source Data
81
-
82
- <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
83
-
84
- #### Data Collection and Processing
85
-
86
- <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
87
-
88
- [More Information Needed]
89
-
90
- #### Who are the source data producers?
91
-
92
- <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
93
-
94
- [More Information Needed]
95
-
96
- ### Annotations [optional]
97
-
98
- <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
99
-
100
- #### Annotation process
101
-
102
- <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
103
-
104
- [More Information Needed]
105
-
106
- #### Who are the annotators?
107
-
108
- <!-- This section describes the people or systems who created the annotations. -->
109
-
110
- [More Information Needed]
111
-
112
- #### Personal and Sensitive Information
113
-
114
- <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
115
-
116
- [More Information Needed]
117
-
118
- ## Bias, Risks, and Limitations
119
-
120
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
121
-
122
- [More Information Needed]
123
-
124
- ### Recommendations
125
-
126
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
127
-
128
- Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
129
-
130
- ## Citation [optional]
131
-
132
- <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
133
-
134
- **BibTeX:**
135
-
136
- [More Information Needed]
137
-
138
- **APA:**
139
-
140
- [More Information Needed]
141
-
142
- ## Glossary [optional]
143
-
144
- <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
145
-
146
- [More Information Needed]
147
-
148
- ## More Information [optional]
149
-
150
- [More Information Needed]
151
-
152
- ## Dataset Card Authors [optional]
153
-
154
- [More Information Needed]
155
-
156
- ## Dataset Card Contact
157
-
158
- [More Information Needed]
 
41
 
42
  <!-- Address questions around how the dataset is intended to be used. -->
43
 
44
+ # MajorTOM-DE Dataset
45
 
46
+ The **MajorTOM-DE dataset** provides embeddings derived from high-resolution satellite images of the Germany region, generated using the OpenCLIP SigLIP model. These embeddings, extracted from images covering a range of geographic coordinates across Germany, provide a powerful tool for various applications.
47
 
48
+ ## Dataset Information
49
+
50
+ - **Coordinates Info:** The embeddings cover a range of geographic coordinates across the Germany region.
51
+ - **Related Dataset:** The MajorTOM-DE dataset is closely related to the original **S2L2A** dataset.
52
+
53
+ ## Features
54
+
55
+ The MajorTOM-DE dataset leverages CLIP's ability to relate textual descriptions to visual data, enabling more intuitive searches and analysis. This allows users to search among images using text-based queries effectively.
56
+
57
+ ## Applications
58
+
59
+ The MajorTOM-DE dataset can be utilized for various applications, including:
60
+
61
+ - **Monitoring Changes in Land Use and Land Cover:**
62
+ - Track deforestation
63
+ - Observe urban expansion
64
+ - Monitor water body dynamics
65
+
66
+ - **Precision Agriculture:**
67
+ - Analyze crop health
68
+ - Predict yields
69
+ - Plan harvests
70
+
71
+ - **Climate Research:**
72
+ - Study climate patterns
73
+ - Monitor changes and impacts on regional and local levels
74
+
75
+
76
+ <!--direct use have to think still with de code snippet -->
77
 
78
 
79
 
 
95
 
96
  **Embedding.dat**
97
 
98
+ | Column | Explanation |
99
+ |---------------|-----------------------------------------------------------------------------------------------------|
100
+ | ID | ID of the image/image part for which the embedding was calculated. |
101
+ | dat_row | Row in the .dat file that can be used to match the embeddings to the MajorTOM datasets via metadata.paraquet dataset. |
102
+ | image_type | Specifies whether it is a Full image or a Splits image. Each image is split into 70 segments and vectorized. Splits image refers to a segment. |
103
+ | coordinates | Coordinates in the image that define the segment that was vectorized. Full images have no coordinates. |
104
+ | split_configs | Explains how the images were split into segments. Full images have no split configs, but Splits images are all auto extra tiles with a default split setting of 70. |
105
+ | embeddings | Vectors calculated from the image/image segment. |
106
 
107