Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- onnx
|
| 5 |
+
- remote-sensing
|
| 6 |
+
- foundation-model
|
| 7 |
+
- geospatial
|
| 8 |
+
base_model: ibm-nasa-geospatial/Prithvi-EO-2.0-tiny-TL
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Prithvi-EO-2.0-tiny — ONNX Encoder
|
| 12 |
+
|
| 13 |
+
Encoder-only ONNX export of [Prithvi-EO-2.0-tiny-TL](https://huggingface.co/ibm-nasa-geospatial/Prithvi-EO-2.0-tiny-TL) for browser inference via ONNX Runtime WebAssembly.
|
| 14 |
+
|
| 15 |
+
## Usage
|
| 16 |
+
|
| 17 |
+
- **Input:** `(batch, 6, 1, 224, 224)` — 6-band HLS patch, single timestep
|
| 18 |
+
- **Output:** `(batch, 192)` — CLS token embedding
|
| 19 |
+
- **Normalization:** mean-std per channel (see below)
|
| 20 |
+
|
| 21 |
+
| Band | Mean | Std |
|
| 22 |
+
|------|------|-----|
|
| 23 |
+
| B02 | 1087 | 2248 |
|
| 24 |
+
| B03 | 1342 | 2179 |
|
| 25 |
+
| B04 | 1433 | 2178 |
|
| 26 |
+
| B05 | 2734 | 1850 |
|
| 27 |
+
| B06 | 1958 | 1242 |
|
| 28 |
+
| B07 | 1363 | 1049 |
|
| 29 |
+
|
| 30 |
+
## Export
|
| 31 |
+
|
| 32 |
+
Generated with `scripts/export_onnx.py` from the [folia](https://github.com/nthh/folia) project.
|
| 33 |
+
Wraps the ViT-MAE encoder, strips the decoder, returns CLS token only.
|
| 34 |
+
|
| 35 |
+
## License
|
| 36 |
+
|
| 37 |
+
Apache-2.0 (same as base model).
|