kdoherty commited on
Commit
a4d4199
·
verified ·
1 Parent(s): bdc0adc

Update dataset card metadata - 2025-09-17T13:04:16.826304

Browse files
Files changed (1) hide show
  1. README.md +7 -67
README.md CHANGED
@@ -18,69 +18,6 @@ tags:
18
  pretty_name: Light Stable Semantics
19
  size_categories:
20
  - n<1K
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
- dataset_info:
29
- features:
30
- - name: idx
31
- dtype: string
32
- - name: image_t0
33
- dtype: image
34
- - name: image_t1
35
- dtype: image
36
- - name: image_t2
37
- dtype: image
38
- - name: canopy_height
39
- dtype:
40
- array2_d:
41
- shape:
42
- - 1024
43
- - 1024
44
- dtype: int32
45
- - name: cls_t0
46
- sequence: float32
47
- length: 1024
48
- - name: cls_t1
49
- sequence: float32
50
- length: 1024
51
- - name: cls_t2
52
- sequence: float32
53
- length: 1024
54
- - name: patch_t0
55
- dtype:
56
- array2_d:
57
- shape:
58
- - 196
59
- - 1024
60
- dtype: float32
61
- - name: patch_t1
62
- dtype:
63
- array2_d:
64
- shape:
65
- - 196
66
- - 1024
67
- dtype: float32
68
- - name: patch_t2
69
- dtype:
70
- array2_d:
71
- shape:
72
- - 196
73
- - 1024
74
- dtype: float32
75
- splits:
76
- - name: train
77
- num_bytes: 6087798461.428572
78
- num_examples: 487
79
- - name: test
80
- num_bytes: 1514563881.5714285
81
- num_examples: 122
82
- download_size: 5206242518
83
- dataset_size: 7602362343.0
84
  ---
85
 
86
  # Light Stable Semantics Dataset
@@ -109,6 +46,8 @@ Each record in the dataset contains the following features:
109
 
110
  The canopy height layer is reprojected to align with the RGB tiles and multiplied by 100 before casting to `int32`, so each value represents centimetres above ground. Missing data is encoded with `-2147483648` (the minimum 32-bit integer).
111
 
 
 
112
  ## Usage Example
113
 
114
  ```python
@@ -117,7 +56,7 @@ from datasets import load_dataset
117
  # Load the dataset
118
  dataset = load_dataset("mpg-ranch/light-stable-semantics")
119
 
120
- # Access a single record
121
  sample = dataset['train'][0]
122
 
123
  # Images for the three time points
@@ -139,6 +78,9 @@ tile_id = sample['idx'] # Format: "{ROW}_{COL} of tiles within the original ort
139
 
140
  # Co-registered canopy height (centimetres stored as int32)
141
  canopy_cm = sample['canopy_height']
 
 
 
142
  ```
143
 
144
  ## Pre-computed Embeddings
@@ -154,7 +96,7 @@ The dataset includes pre-computed embeddings extracted using the **facebook/dino
154
 
155
  - **Location**: Lower Partridge Alley, MPG Ranch, Montana, USA
156
  - **Survey Date**: November 7, 2024
157
- - **Coverage**: 620 complete tile sets
158
  - **Resolution**: 1024×1024 pixels at 1.2cm ground resolution
159
  - **Total Size**: ~6.4GB of image data plus embeddings
160
  - **Quality Control**: Tiles with transient objects, such as vehicles, were excluded from the dataset. RGB imagery and canopy rasters are removed together to keep modalities aligned.
@@ -196,5 +138,3 @@ This dataset is released under the [Creative Commons Attribution 4.0 Internation
196
  - Provide a link to the license
197
  - Indicate if changes were made to the dataset
198
 
199
- ##Updates
200
- Placeholder
 
18
  pretty_name: Light Stable Semantics
19
  size_categories:
20
  - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
 
23
  # Light Stable Semantics Dataset
 
46
 
47
  The canopy height layer is reprojected to align with the RGB tiles and multiplied by 100 before casting to `int32`, so each value represents centimetres above ground. Missing data is encoded with `-2147483648` (the minimum 32-bit integer).
48
 
49
+ The dataset is partitioned with an 80%/20% train/test split.
50
+
51
  ## Usage Example
52
 
53
  ```python
 
56
  # Load the dataset
57
  dataset = load_dataset("mpg-ranch/light-stable-semantics")
58
 
59
+ # Access a single training record
60
  sample = dataset['train'][0]
61
 
62
  # Images for the three time points
 
78
 
79
  # Co-registered canopy height (centimetres stored as int32)
80
  canopy_cm = sample['canopy_height']
81
+
82
+ # Held-out evaluation tile
83
+ test_sample = dataset['test'][0]
84
  ```
85
 
86
  ## Pre-computed Embeddings
 
96
 
97
  - **Location**: Lower Partridge Alley, MPG Ranch, Montana, USA
98
  - **Survey Date**: November 7, 2024
99
+ - **Coverage**: 620 complete tile sets (80% train / 20% test split via seeded random sampling)
100
  - **Resolution**: 1024×1024 pixels at 1.2cm ground resolution
101
  - **Total Size**: ~6.4GB of image data plus embeddings
102
  - **Quality Control**: Tiles with transient objects, such as vehicles, were excluded from the dataset. RGB imagery and canopy rasters are removed together to keep modalities aligned.
 
138
  - Provide a link to the license
139
  - Indicate if changes were made to the dataset
140