Francismj commited on
Commit
6aabbcd
·
verified ·
1 Parent(s): 1fdde4f

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +4 -3
  2. 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 — 69-channel ERA5-like backbone (120×240, 6 h)
13
 
14
- **Sonny** is a ViT-style one-step weather backbone trained at 1.5°-style resolution (lat×lon = 120×240), 69 ERA5-like variables, patch size 2, EMA weights at epoch 50.
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 :class:`Sonny`
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": "sonny",
 
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,