File size: 1,538 Bytes
425632f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
license: mit
library_name: pytorch
tags:
  - weather
  - data-assimilation
  - diffusion-models
  - aurora
---

# SBDA Resources

This repository contains the model checkpoints, normalization statistics, and
sparse-observation mask required to reproduce the SBDA experiments.

## Files

| Path | Purpose |
| --- | --- |
| `model_ckpt/sbda_full.pt` | Full SBDA checkpoint |
| `model_ckpt/sbda_wo_oi_train.pt` | SBDA checkpoint trained without observation refinement |
| `model_ckpt/diffda.pt` | Baseline DiffDA checkpoint |
| `aifs_ckpt/aurora-1.5-finetuned.pt` | Fine-tuned Aurora checkpoint for background generation and forecast evaluation |
| `stats/mean_std_121x240.npz` | ERA5 normalization statistics used by all experiments |
| `stats/mean_std_diff_120x240.npz` | ERA5–Aurora difference statistics used by baseline DiffDA |
| `mask/mask_120x240_1pct.pt` | Fixed 1% sparse-observation mask |

Download all resources into the `resource/` directory of the code release:

```bash
hf download strayee/SBDA --local-dir resource
```

File integrity can be checked with:

```bash
sha256sum -c SHA256SUMS
```

## License

The distributed checkpoints are released under the MIT terms in `LICENSE.md`.
The fine-tuned Aurora checkpoint retains the Microsoft Aurora MIT notice. The
license of these files does not relicense the software required to run them or
the ERA5-derived source data; see `LICENSE.md` for the precise scope.

PyTorch `.pt` files may use Python pickle internally. Load checkpoint files only
from a source you trust.