File size: 2,838 Bytes
92d0b3f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
  "model_name": "GraphDOP",
  "model_type": "graphdop",
  "architectures": [
    "GraphDOP"
  ],
  "framework": "PyTorch",
  "domain": "climate-and-atmosphere",
  "task": "observation-driven-medium-range-weather-forecasting",
  "implementation": {
    "entry_point": "model/graphdop.py",
    "scope": "pure-PyTorch minimal reproduction using gridded ERA5 placeholders and fixed regular-mesh graphs instead of the paper's irregular Level-1 observations and dynamic graphs"
  },
  "architecture": {
    "family": "GNN encoder-Transformer processor-GNN decoder",
    "input_format": "B T C H W",
    "encoder": "per-grid-cell MLP, adaptive pooling to the latent mesh, then residual mean-aggregation GNN layers",
    "processor": "pre-normalized Transformer encoder over latent-mesh tokens with learned positional embeddings",
    "decoder": "latent-mesh GNN, bilinear upsampling, and a per-grid-cell output MLP",
    "edge_features": [
      "forward bearing",
      "Haversine distance"
    ],
    "activation": "GELU",
    "normalization": "LayerNorm",
    "loss": "channel-weighted mean squared error",
    "repository_default_config": {
      "purpose": "connectivity validation with synthetic gridded data",
      "grid_shape": [
        32,
        32
      ],
      "mesh_shape": [
        8,
        8
      ],
      "in_channels": 6,
      "out_channels": 6,
      "input_steps": 2,
      "output_steps": 2,
      "latent_dim": 64,
      "num_encoder_layers": 2,
      "num_decoder_layers": 2,
      "num_processor_blocks": 1,
      "attention_heads": 4,
      "hidden_dim": 64,
      "channel_weights": [
        1,
        1,
        1,
        1,
        1,
        1
      ]
    },
    "paper_reference_config": {
      "latent_grid": "O96 reduced Gaussian grid with 40320 nodes",
      "latent_dim": 1024,
      "observation_graph": "dynamic graph over irregular Level-1 observations",
      "training_steps": 70000,
      "training_hardware": "64 H100 GPUs"
    }
  },
  "data": {
    "dataset": "ERA5",
    "role": "regular-grid placeholder for the paper's multi-instrument observations",
    "variables": [
      "atms_brightness_temperature",
      "gpsro_bending_angle",
      "ascat_sigma0",
      "significant_wave_height",
      "2m_temperature",
      "10m_wind_speed"
    ],
    "time_step_hours": 6,
    "input_length": 2,
    "output_length": 2,
    "channels": 6,
    "spatial_size": [
      32,
      32
    ],
    "storage_format": "HDF5 fields with T C H W layout",
    "train_years": [
      1951,
      1952
    ],
    "validation_years": [
      1953
    ],
    "test_years": [
      1954
    ]
  },
  "configuration_sources": [
    "README.md",
    "conf/config.yaml",
    "model/graphdop.py",
    "scripts/train.py",
    "scripts/inference.py",
    "scripts/fake_data.py",
    "configuration.json"
  ]
}