mikonvergence commited on
Commit
3c0a7a8
·
verified ·
1 Parent(s): aa88412

Add model card

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ tags:
4
+ - earth-observation
5
+ - remote-sensing
6
+ - sentinel-2
7
+ - sentinel-1
8
+ - embeddings
9
+ - model-distillation
10
+ - geospatial
11
+ datasets:
12
+ - Major-TOM/Core-S2-L1C
13
+ - Major-TOM/Core-S2-L2A
14
+ - Major-TOM/Core-S1-RTC
15
+ - Major-TOM/Core-AlphaEarth-Embeddings
16
+ library_name: betaearth
17
+ pipeline_tag: feature-extraction
18
+ ---
19
+
20
+ # betaearth-segformer
21
+
22
+ BetaEarth SegFormer-B2 no FiLM (ISPRS baseline) — no timestamp needed
23
+
24
+ Part of the **BetaEarth** family — fully trainable, without temporal conditioning.
25
+
26
+ | Metric | Value |
27
+ |--------|-------|
28
+ | Test cosine similarity | 0.88 |
29
+ | LULC downstream accuracy | 0.869 |
30
+ | Trainable parameters | 104.8M |
31
+ | Total parameters | 104.8M |
32
+ | Inputs | S2 L1C+L2A (9ch), S1 RTC (2ch), COP-DEM (1ch) |
33
+ | Output | (H, W, 64) float32, L2-normalised |
34
+
35
+ ## Usage
36
+
37
+ ```bash
38
+ pip install betaearth
39
+ ```
40
+
41
+ ```python
42
+ from betaearth import BetaEarth
43
+
44
+ model = BetaEarth.from_pretrained("asterisk-labs/betaearth-segformer")
45
+ embedding = model.predict(
46
+ s2_l2a=s2_l2a, # (9, H, W) uint16
47
+ s1=s1, # (2, H, W) float32
48
+ dem=dem, # (1, H, W) float32
49
+ doy=182,
50
+ )
51
+ # embedding: (H, W, 64) numpy array
52
+ ```
53
+
54
+ ## All BetaEarth models
55
+
56
+ | Model | Cos Sim | Params | Best for |
57
+ |-------|---------|--------|----------|
58
+ | [betaearth-segformer-film](asterisk-labs/betaearth-segformer-film) | **0.886** | 0.3M | Best quality |
59
+ | [betaearth-segformer-film-hilr](asterisk-labs/betaearth-segformer-film-hilr) | 0.886 | 0.3M | Alt frozen |
60
+ | [betaearth-segformer](asterisk-labs/betaearth-segformer) | 0.880 | 104.8M | No timestamp |
61
+ | [betaearth-segformer-film-scratch](asterisk-labs/betaearth-segformer-film-scratch) | 0.883 | 104.8M | End-to-end |
62
+ | [betaearth-rgb-only](asterisk-labs/betaearth-rgb-only) | 0.836 | 26.3M | Minimal data |
63
+
64
+ ## Citation
65
+
66
+ ```bibtex
67
+ @inproceedings{czerkawski2026betaearth,
68
+ title = {BetaEarth: Emulating Closed-Source Earth Observation Foundation Models Through Their Public Embeddings},
69
+ author = {Czerkawski, Mikolaj},
70
+ booktitle = {ISPRS Congress 2026},
71
+ year = {2026}
72
+ }
73
+ ```
74
+
75
+ ## License
76
+
77
+ CC-BY 4.0. Training data attribution: "The AlphaEarth Foundations Satellite Embedding dataset is produced by Google and Google DeepMind."