Image-to-Image
PyTorch
fuxi
transformer
tpys commited on
Commit
bb0de73
·
verified ·
1 Parent(s): 64a197e

Fix q unit: kg/kg → g/kg (scaled ×1000 from ERA5); clarify input/output normalization space

Browse files
Files changed (1) hide show
  1. variables.py +1 -1
variables.py CHANGED
@@ -47,7 +47,7 @@ PL_VARIABLES: list[tuple[str, str, str]] = [
47
  ("t", "temperature", "K"),
48
  ("u", "u_component_of_wind", "m/s"),
49
  ("v", "v_component_of_wind", "m/s"),
50
- ("q", "specific_humidity", "kg/kg"),
51
  ]
52
 
53
  # ── Surface variables (20) ───────────────────────────────────────
 
47
  ("t", "temperature", "K"),
48
  ("u", "u_component_of_wind", "m/s"),
49
  ("v", "v_component_of_wind", "m/s"),
50
+ ("q", "specific_humidity", "g/kg"), # scaled ×1000 from ERA5 kg/kg
51
  ]
52
 
53
  # ── Surface variables (20) ───────────────────────────────────────