Spaces:
Running
Running
Organization card: TESSERA overview, models, and hero GIF
Browse files- .gitattributes +1 -0
- README.md +46 -4
- tessera-v2-hero-lite.gif +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tessera-v2-hero-lite.gif filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,10 +1,52 @@
|
|
| 1 |
---
|
| 2 |
title: README
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: README
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
<p align="center">
|
| 11 |
+
<img src="https://huggingface.co/spaces/geotessera/README/resolve/main/tessera-v2-hero-lite.gif"
|
| 12 |
+
alt="TESSERA β pixel-wise Earth foundation model" width="100%">
|
| 13 |
+
</p>
|
| 14 |
+
|
| 15 |
+
# GeoTessera
|
| 16 |
+
|
| 17 |
+
Home of the **TESSERA** family of geospatial foundation models from the
|
| 18 |
+
University of Cambridge ([ucam-eo](https://github.com/ucam-eo)).
|
| 19 |
+
|
| 20 |
+
TESSERA is a **pixel-wise** Earth-observation foundation model: it encodes a full
|
| 21 |
+
year of **Sentinel-1 and Sentinel-2** observations at each 10 m pixel into a
|
| 22 |
+
compact, task-agnostic embedding for downstream geospatial analysis β land cover,
|
| 23 |
+
crop mapping, biomass and carbon, change detection, and more. No labels, no
|
| 24 |
+
imagery to ship around: just dense annual embeddings you can treat as data.
|
| 25 |
+
|
| 26 |
+
## Models on this page
|
| 27 |
+
|
| 28 |
+
| Release | What it is | Repos |
|
| 29 |
+
|---|---|---|
|
| 30 |
+
| **TESSERA v2** (latest) | Four compact pixel students (**Nano 1.07M Β· Small 7.11M Β· Medium 21.03M Β· Large 43.83M**) distilled from a **2B teacher**. Students emit a 128-d **Matryoshka** embedding usable at 16/32/64/128 dims. | [`-2B-N`](https://huggingface.co/geotessera/TESSERA-V-2.0-2B-N) Β· [`-2B-S`](https://huggingface.co/geotessera/TESSERA-V-2.0-2B-S) Β· [`-2B-M`](https://huggingface.co/geotessera/TESSERA-V-2.0-2B-M) Β· [`-2B-L`](https://huggingface.co/geotessera/TESSERA-V-2.0-2B-L) Β· [`-2B-Teacher`](https://huggingface.co/geotessera/TESSERA-V-2.0-2B-Teacher) |
|
| 31 |
+
| **TESSERA v1.1** | Wider QAT encoder, all-observation inference, per-source normalization; MPC and AWS checkpoints. int8 output. | [`TESSERA-V-1.1`](https://huggingface.co/geotessera/TESSERA-V-1.1) |
|
| 32 |
+
| **TESSERA v1.0** | The original release (QAT / int8 and early fp32). | [`TESSERA-V-1.0`](https://huggingface.co/geotessera/TESSERA-V-1.0) |
|
| 33 |
+
|
| 34 |
+
Browse everything in the [**TESSERA collection**](https://huggingface.co/collections/geotessera/tessera-6a108c1a6618e155f551c065).
|
| 35 |
+
|
| 36 |
+
## Two ways to use TESSERA
|
| 37 |
+
|
| 38 |
+
- **Precomputed embeddings (easiest).** Don't run a model at all β download ready-made
|
| 39 |
+
global embeddings with the [**`geotessera`**](https://github.com/ucam-eo/geotessera)
|
| 40 |
+
Python library (`pip install geotessera`), or request coverage for your region.
|
| 41 |
+
- **Run inference yourself.** Generate embeddings from your own Sentinel-1/2 tiles with
|
| 42 |
+
the code in the [**`tessera`**](https://github.com/ucam-eo/tessera) repository.
|
| 43 |
+
|
| 44 |
+
## Links
|
| 45 |
+
|
| 46 |
+
- π¦ Model & inference code: **https://github.com/ucam-eo/tessera**
|
| 47 |
+
- π Python library for precomputed embeddings: **https://github.com/ucam-eo/geotessera**
|
| 48 |
+
- π Project website: **https://geotessera.org**
|
| 49 |
+
- π Preprints: [TESSERA v2 β Scaling Pixel-wise Earth Foundation Models](https://arxiv.org/abs/2607.03949) Β· [TESSERA (v1)](https://arxiv.org/abs/2506.20380)
|
| 50 |
+
|
| 51 |
+
Model weights are released under **CC0-1.0**; the `geotessera` library is **MIT**.
|
| 52 |
+
Use is additionally governed by the TESSERA [Acceptable Use Policy](https://github.com/ucam-eo/tessera/blob/master/aup.md).
|
tessera-v2-hero-lite.gif
ADDED
|
Git LFS Details
|