Views
No views yet
| Metric | Value |
|---|---|
| Test cosine similarity | 0.88 |
| LULC downstream accuracy | 0.869 |
| Trainable parameters | 104.8M |
| Total parameters | 104.8M |
| Inputs | S2 L1C+L2A (9ch), S1 RTC (2ch), COP-DEM (1ch) |
| Output | (H, W, 64) float32, L2-normalised |
pip install betaearth1from betaearth import BetaEarth
2
3model = BetaEarth.from_pretrained("asterisk-labs/betaearth-segformer")
4embedding = model.predict(
5 s2_l2a=s2_l2a, # (9, H, W) uint16
6 s1=s1, # (2, H, W) float32
7 dem=dem, # (1, H, W) float32
8 doy=182,
9)
10# embedding: (H, W, 64) numpy array| Model | Cos Sim | Params | Best for |
|---|---|---|---|
| betaearth-segformer-film | 0.886 | 0.3M | Best quality |
| betaearth-segformer-film-hilr | 0.886 | 0.3M | Alt frozen |
| betaearth-segformer | 0.880 | 104.8M | No timestamp |
| betaearth-segformer-film-scratch | 0.883 | 104.8M | End-to-end |
| betaearth-rgb-only | 0.836 | 26.3M | Minimal data |
1@inproceedings{czerkawski2026betaearth,
2 title = {BetaEarth: Emulating Closed-Source Earth Observation Foundation Models Through Their Public Embeddings},
3 author = {Czerkawski, Mikolaj},
4 booktitle = {ISPRS Congress 2026},
5 year = {2026}
6}