Upload folder using huggingface_hub
Browse files- README.md +4 -3
- config.json +3 -1
README.md
CHANGED
|
@@ -6,12 +6,13 @@ tags:
|
|
| 6 |
- era5
|
| 7 |
- pytorch
|
| 8 |
- sonny
|
|
|
|
| 9 |
pipeline_tag: other
|
| 10 |
---
|
| 11 |
|
| 12 |
-
# Sonny
|
| 13 |
|
| 14 |
-
**Sonny** is a
|
| 15 |
|
| 16 |
## Loading (with the `stormer` codebase)
|
| 17 |
|
|
@@ -28,7 +29,7 @@ Or download files manually and build :class:`~stormer.models.hub.sonny.Sonny`(**
|
|
| 28 |
|
| 29 |
## Files
|
| 30 |
|
| 31 |
-
- `config.json` — hyperparameters / variable list for
|
| 32 |
- `model.safetensors` — EMA ``ema_model_state_dict``
|
| 33 |
- `normalization_note.txt` — reminder to use your local ``normalization_constants`` from the training repo for real inference
|
| 34 |
|
|
|
|
| 6 |
- era5
|
| 7 |
- pytorch
|
| 8 |
- sonny
|
| 9 |
+
- stepnets
|
| 10 |
pipeline_tag: other
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Sonny
|
| 14 |
|
| 15 |
+
**Sonny** is a **StepNets**-style one-step weather backbone: variable-aware embedding, then a two-stage trunk (narrow **Step 1** “slow path” over dynamics-heavy channels, full-width **Step 2** “fast path” after fusion), timestep conditioning, and patch-wise prediction. Trained at 1.5°-style resolution (**120×240**), **69** ERA5-like variables, patch size **2**, **EMA** weights at epoch **50**.
|
| 16 |
|
| 17 |
## Loading (with the `stormer` codebase)
|
| 18 |
|
|
|
|
| 29 |
|
| 30 |
## Files
|
| 31 |
|
| 32 |
+
- `config.json` — hyperparameters / variable list for **Sonny**
|
| 33 |
- `model.safetensors` — EMA ``ema_model_state_dict``
|
| 34 |
- `normalization_note.txt` — reminder to use your local ``normalization_constants`` from the training repo for real inference
|
| 35 |
|
config.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"sonny_version": "1.0",
|
| 3 |
-
"architecture_name": "
|
|
|
|
| 4 |
"class_qualname": "stormer.models.hub.sonny.Sonny",
|
| 5 |
"source_checkpoint": "stormbreaker5_checkpoint_ema_epoch_050.pth",
|
| 6 |
"source_epoch": 50,
|
|
|
|
| 1 |
{
|
| 2 |
+
"model_name": "Sonny",
|
| 3 |
"sonny_version": "1.0",
|
| 4 |
+
"architecture_name": "Sonny",
|
| 5 |
+
"architecture_family": "StepNets",
|
| 6 |
"class_qualname": "stormer.models.hub.sonny.Sonny",
|
| 7 |
"source_checkpoint": "stormbreaker5_checkpoint_ema_epoch_050.pth",
|
| 8 |
"source_epoch": 50,
|