Datasets:
Add files using upload-large-folder tool
Browse files- README.md +66 -0
- mindset_aef.parquet +3 -0
- mindset_teachers.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- feature-extraction
|
| 5 |
+
tags:
|
| 6 |
+
- geospatial
|
| 7 |
+
- location-encoder
|
| 8 |
+
- embeddings
|
| 9 |
+
- distillation
|
| 10 |
+
- geoparquet
|
| 11 |
+
pretty_name: MINDSET
|
| 12 |
+
size_categories:
|
| 13 |
+
- 10M<n<100M
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# MINDSET — MIND Spatial-Embedding Teachers
|
| 17 |
+
|
| 18 |
+
The pretraining dataset for **MIND** (Matryoshka Implicit Neural Distillation), a lat/lon-only location
|
| 19 |
+
encoder distilled from four geospatial teachers. MINDSET caches the teachers' location-conditioned
|
| 20 |
+
embeddings so the pretraining is **reproducible** and the location-only teachers do not need to be
|
| 21 |
+
recomputed each epoch.
|
| 22 |
+
|
| 23 |
+
Points are the urban-dense global training sample (12,099,072 land coordinates, WGS84). Two files,
|
| 24 |
+
joinable on `point_id`, both **GeoParquet 1.1** (Hilbert-sorted, `bbox` covering column → spatial range
|
| 25 |
+
queries read only the relevant row groups):
|
| 26 |
+
|
| 27 |
+
| file | grain | rows | columns |
|
| 28 |
+
|---|---|---|---|
|
| 29 |
+
| `mindset_teachers.parquet` | one row per point | 12,099,072 | `point_id`, `geometry` (Point), `bbox`, `climplicit` [1024], `geoclip` [512], `sinr` [256] — **float16** |
|
| 30 |
+
| `mindset_aef.parquet` | one row per (point, year) | 108,891,648 | `point_id`, `year`, `geometry`, `bbox`, `aef` [64] — **int8** |
|
| 31 |
+
|
| 32 |
+
## Conventions
|
| 33 |
+
|
| 34 |
+
- **CRS:** OGC:CRS84 (lon, lat) WGS84 — geometry is `Point(lon, lat)`. (Not EPSG:4326, which is lat,lon.)
|
| 35 |
+
- **Join** the two files on `point_id`. The three teachers are location-only (one vector per point);
|
| 36 |
+
AlphaEarth is temporal, so it has one row per (point, year), years 2017–2025.
|
| 37 |
+
- **dtypes / dequantization.** Teachers are stored **raw** as float16 (the embedder output). AEF is the
|
| 38 |
+
**native int8** with `signed_square` quantization — dequantize with
|
| 39 |
+
`f = sign(x) * (|x| / 127.5) ** 2` (nodata = −128). Both are turned into training targets by
|
| 40 |
+
**L2-normalizing at use** (MIND also optionally PHI-S-standardizes the teachers). float16/int8 are
|
| 41 |
+
downstream-lossless for distillation targets.
|
| 42 |
+
|
| 43 |
+
## Teachers (provenance)
|
| 44 |
+
|
| 45 |
+
| column | teacher | dim | source |
|
| 46 |
+
|---|---|---|---|
|
| 47 |
+
| `aef` | AlphaEarth Foundations | 64 | Google AEF v1 annual (source.coop `tge-labs/aef`), CC-BY-4.0 |
|
| 48 |
+
| `climplicit` | Climplicit | 1024 | `Jobedo/climplicit` (CHELSA climate, ReSIREN) |
|
| 49 |
+
| `geoclip` | GeoCLIP | 512 | GeoCLIP location encoder |
|
| 50 |
+
| `sinr` | SINR | 256 | `MVRL/sinr-location-encoder-1000-cls` (Cole et al. 2023) |
|
| 51 |
+
|
| 52 |
+
Embeddings are derived from these pretrained models; respect each upstream license.
|
| 53 |
+
|
| 54 |
+
## Load
|
| 55 |
+
|
| 56 |
+
```python
|
| 57 |
+
import geopandas as gpd, pandas as pd
|
| 58 |
+
teachers = gpd.read_parquet("mindset_teachers.parquet") # geometry + climplicit/geoclip/sinr
|
| 59 |
+
aef = gpd.read_parquet("mindset_aef.parquet") # per (point, year); join on point_id
|
| 60 |
+
# spatial subset without a full download (cloud-optimized): DuckDB spatial / pyarrow dataset filters
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## Reproduce
|
| 64 |
+
|
| 65 |
+
Built with `scripts/build_mindset.py` from the neuralftw repo (AEF from the existing int8 shards; the
|
| 66 |
+
three location-only teachers computed on GPU).
|
mindset_aef.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f571ff5daef9b1b065a605cfbaa8a76a24903fcbe9998fcf90d4fc122a20622c
|
| 3 |
+
size 7845382933
|
mindset_teachers.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:231e8fcb949cead1477e8a0a039228e2ede081491dd6b8f57d1b92e30f7d5e7a
|
| 3 |
+
size 30440747119
|