File size: 21,937 Bytes
f4a39ee | 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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 | # Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Public API for NeuralGCM models."""
from __future__ import annotations
from collections import abc
import datetime
import functools
from typing import Any, Callable
from dinosaur import coordinate_systems
from dinosaur import scales
from dinosaur import time_integration
from dinosaur import typing
from dinosaur import xarray_utils
import jax
from jax import tree_util
import jax.numpy as jnp
from model.legacy import gin_utils
from model.legacy import model_builder
from model.legacy import physics_specifications
import numpy as np
import pandas as pd
import xarray
ArrayLike = float | np.ndarray | jax.Array
Params = dict[str, dict[str, ArrayLike]]
TimedeltaLike = str | np.timedelta64 | pd.Timestamp | datetime.timedelta
Numeric = float | np.ndarray | jax.Array | xarray.DataArray
# TODO(shoyer): make these types more precise
Inputs = dict[str, ArrayLike]
Forcings = dict[str, ArrayLike]
TemporalForcings = dict[str, ArrayLike]
Outputs = dict[str, jax.Array]
BatchedOutputs = dict[str, jax.Array]
State = Any
def _sim_time_from_state(state: State) -> jax.Array:
"""Extract sim_time from model state."""
# TODO(shoyer): eliminate whichever of these two cases is no longer needed!
# TODO(shoyer): consider renaming `sim_time` to `time`?
if isinstance(state, typing.ModelState):
sim_time = getattr(state.state, 'sim_time', None)
else:
sim_time = getattr(state, 'sim_time', None)
return sim_time # pyrefly: ignore[bad-return]
def _calculate_sub_steps(
timestep: np.timedelta64, duration: TimedeltaLike
) -> int:
"""Calculate the number of time-steps required to simulate a time interval."""
duration = pd.Timedelta(duration)
time_step_ratio = duration / timestep
if abs(time_step_ratio - round(time_step_ratio)) > 1e-6:
raise ValueError(
f'non-integral time-step ratio: {duration=} is not a multiple of '
f'the internal model timestep {timestep}'
)
return round(time_step_ratio)
def _prepend_dummy_time_axis(state: typing.Pytree) -> typing.Pytree:
return tree_util.tree_map(lambda x: jnp.expand_dims(x, axis=0), state)
def _static_gin_config(method):
"""Decorator to add static gin config to a method."""
@functools.wraps(method)
def _method(self, *args, **kwargs):
with gin_utils.specific_config(self.gin_config):
return method(self, *args, **kwargs)
return _method
def _check_variables(
dataset: xarray.Dataset,
desired_level_variables: abc.Sequence[str] = (),
desired_surface_variables: abc.Sequence[str] = (),
):
"""Checks that a dataset has the desired variables."""
T, Z, X, Y = ('time', 'level', 'longitude', 'latitude') # pylint: disable=invalid-name
for k in desired_level_variables:
if k not in dataset.data_vars:
raise ValueError(f'expected variable {k} not found')
dims = dataset[k].dims
if not (set(dims) == {Z, X, Y} or set(dims) == {T, Z, X, Y}):
raise ValueError(
f'expected variable {k} to have dims {(Z, X, Y)} or {(T, Z, X, Y)},'
f' but got {dims}'
)
for k in desired_surface_variables:
if k not in dataset.data_vars:
raise ValueError(f'expected variable {k} not found')
dims = dataset[k].dims
if not (set(dims) == {X, Y} or set(dims) == {T, X, Y}):
raise ValueError(
f'expected variable {k} to have dims {(X, Y)} or {(T, X, Y)},'
f' but got {dims}'
)
def _check_coords(
actual_coords: coordinate_systems.CoordinateSystem,
desired_coords: coordinate_systems.CoordinateSystem,
) -> None:
"""Checks that a dataset has the desired coordinates."""
if not np.allclose(
actual := actual_coords.horizontal.longitudes,
desired := desired_coords.horizontal.longitudes,
atol=1e-3,
):
raise ValueError(f'longitude coordinate mismatch: {actual=}, {desired=}')
if not np.allclose(
actual := actual_coords.horizontal.latitudes,
desired := desired_coords.horizontal.latitudes,
atol=1e-3,
):
raise ValueError(f'latitude coordinate mismatch: {actual=}, {desired=}')
if actual_coords.vertical is not None and not np.allclose(
actual := actual_coords.vertical.centers,
desired := desired_coords.vertical.centers,
atol=1e-3,
):
raise ValueError(
f'pressure level coordinate mismatch: {actual=}, {desired=}'
)
def _rename_if_found(
dataset: xarray.Dataset, names: dict[str, str]
) -> xarray.Dataset:
return dataset.rename({k: v for k, v in names.items() if k in dataset})
_ABBREVIATED_NAMES = {
'u_component_of_wind': 'u',
'v_component_of_wind': 'v',
'geopotential': 'z',
'temperature': 't',
'longitude': 'lon',
'latitude': 'lat',
}
_FULL_NAMES = {v: k for k, v in _ABBREVIATED_NAMES.items()}
def _expand_tracers(inputs: dict) -> dict:
inputs = inputs.copy()
inputs.update(inputs.pop('tracers'))
assert not inputs['diagnostics']
del inputs['diagnostics']
return inputs
@tree_util.register_pytree_node_class
class PressureLevelModel:
"""Inference-only API for models that predict dense data on pressure levels.
These models are trained on ECMWF ERA5 data on pressure-levels as stored in
the Copernicus Data Store.
This class encapsulates the details of defining models (e.g., with Haiku) and
hence should remain stable even for future NeuralGCM models.
"""
def __init__(
self,
structure: model_builder.WhirlModel,
params: Params,
gin_config: str,
):
self._structure = structure
self._params = params
self.gin_config = gin_config
self._tracer_variables = [
'specific_humidity',
]
self._input_variables = [
'geopotential',
'specific_humidity',
'temperature',
'u_component_of_wind',
'v_component_of_wind',
]
# Some old model versions do not use cloud variables.
# TODO(shoyer): remove this once all integration tests are updated.
cloud_variables = [
'specific_cloud_ice_water_content',
'specific_cloud_liquid_water_content',
]
for variable in cloud_variables:
if variable in self.gin_config:
self._tracer_variables.append(variable)
self._input_variables.append(variable)
self._forcing_variables = [
'sea_ice_cover',
'sea_surface_temperature',
]
def __repr__(self):
return (
f'{self.__class__.__name__}(structure={self._structure},'
f' params={self._params})'
)
@property
def params(self) -> Params:
return self._params
def tree_flatten(self):
leaves, params_def = tree_util.tree_flatten(self.params)
return (leaves, (params_def, self._structure, self.gin_config))
@classmethod
def tree_unflatten(cls, aux_data, leaves):
params_def, structure, gin_config = aux_data
params = tree_util.tree_unflatten(params_def, leaves)
return cls(structure, params, gin_config)
@property
def input_variables(self) -> list[str]:
"""List of variable names required in `inputs` by this model."""
return list(self._input_variables)
@property
def forcing_variables(self) -> list[str]:
"""List of variable names required in `forcings` by this model."""
return list(self._forcing_variables)
@property
def timestep(self) -> np.timedelta64:
"""Spacing between internal model timesteps."""
to_timedelta = (
self._structure.specs.physics_specs.dimensionalize_timedelta64
)
return to_timedelta(self._structure.specs.dt)
@property
def data_coords(self) -> coordinate_systems.CoordinateSystem:
"""Coordinate system for input and output data."""
return self._structure.data_coords
@property
def model_coords(self) -> coordinate_systems.CoordinateSystem:
"""Coordinate system for internal model state."""
return self._structure.coords
def _check_coords(self, dataset: xarray.Dataset):
dataset_coords = model_builder.coordinate_system_from_dataset(dataset)
_check_coords(dataset_coords, self.data_coords)
def _dataset_with_sim_time(self, dataset: xarray.Dataset) -> xarray.Dataset:
ref_datetime = self._structure.specs.aux_features['reference_datetime']
return xarray_utils.ds_with_sim_time(
dataset,
self._structure.specs.physics_specs,
reference_datetime=ref_datetime,
)
def _to_abbreviated_names_and_tracers(self, inputs: dict) -> dict:
inputs = {_ABBREVIATED_NAMES.get(k, k): v for k, v in inputs.items()}
inputs['tracers'] = {
k: inputs.pop(k) for k in self._tracer_variables if k in inputs
}
inputs['diagnostics'] = {}
return inputs
def _from_abbreviated_names_and_tracers(self, outputs: dict) -> dict:
outputs = {_FULL_NAMES.get(k, k): v for k, v in outputs.items()}
outputs |= outputs.pop('tracers')
outputs |= outputs.pop('diagnostics')
return outputs
def to_nondim_units(self, value: Numeric, units: str) -> Numeric:
"""Scale a value to the model's internal non-dimensional units."""
scale_ = self._structure.specs.physics_specs.scale
units_ = scales.parse_units(units)
return scale_.nondimensionalize(value * units_)
def from_nondim_units(self, value: Numeric, units: str) -> Numeric:
"""Scale a value from the model's internal non-dimensional units."""
scale_ = self._structure.specs.physics_specs.scale
units_ = scales.parse_units(units)
return scale_.dimensionalize(value, units_).magnitude
def datetime64_to_sim_time(self, datetime64: np.ndarray) -> np.ndarray:
"""Converts a datetime64 array to sim_time."""
ref_datetime = self._structure.specs.aux_features['reference_datetime']
return xarray_utils.datetime64_to_nondim_time(
datetime64,
self._structure.specs.physics_specs,
reference_datetime=ref_datetime,
)
def sim_time_to_datetime64(self, sim_time: np.ndarray) -> np.ndarray:
"""Converts a sim_time array to datetime64."""
ref_datetime = self._structure.specs.aux_features['reference_datetime']
return xarray_utils.nondim_time_to_datetime64(
sim_time,
self._structure.specs.physics_specs,
reference_datetime=ref_datetime,
)
def _data_from_xarray(
self, dataset: xarray.Dataset, variables: list[str]
) -> dict[str, np.ndarray]:
self._check_coords(dataset)
dataset = dataset[variables]
dataset = self._dataset_with_sim_time(dataset)
dataset = _rename_if_found(dataset, {'longitude': 'lon', 'latitude': 'lat'})
return xarray_utils.xarray_to_data_dict(dataset)
def inputs_from_xarray(
self, dataset: xarray.Dataset
) -> dict[str, np.ndarray]:
"""Extract inputs from an xarray.Dataset."""
_check_variables(dataset, desired_level_variables=self._input_variables)
return self._data_from_xarray(dataset, self._input_variables)
def forcings_from_xarray(
self, dataset: xarray.Dataset
) -> dict[str, np.ndarray]:
"""Extract forcings from an xarray.Dataset."""
_check_variables(dataset, desired_surface_variables=self._forcing_variables)
return self._data_from_xarray(dataset, self._forcing_variables)
def data_from_xarray(
self, dataset: xarray.Dataset
) -> tuple[dict[str, np.ndarray], dict[str, np.ndarray]]:
"""Extracts data and forcings from an xarray.Dataset."""
inputs = self.inputs_from_xarray(dataset)
forcings = self.forcings_from_xarray(dataset)
return (inputs, forcings)
def data_to_xarray(
self,
data: dict[str, ArrayLike],
times: np.ndarray | None,
decoded: bool = True,
) -> xarray.Dataset:
"""Converts decoded model predictions to xarray.Dataset format.
Args:
data: dict of arrays with shapes matching input/outputs or encoded model
state for this model, i.e., with shape `([time,] level, longitude,
latitude)`, where `[time,]` indicates an optional leading time
dimension.
times: either `None` indicating no leading time dimension on any
variables, or a coordinate array of times with shape `(time,)`.
decoded: if `True`, use `self.data_coords` to determine the output
coordinates; otherwise use `self.model_coords`.
Returns:
An xarray.Dataset with appropriate coordinates and dimensions.
"""
coords = self.data_coords if decoded else self.model_coords
dataset = xarray_utils.data_to_xarray(data, coords=coords, times=times)
dataset = _rename_if_found(dataset, {'lon': 'longitude', 'lat': 'latitude'})
return dataset
def _squeeze_level_from_forcings(self, forcings: Forcings) -> Forcings:
# Due to a bug in xarray_to_dynamic_covariate_data, we were accidentally
# not inserting a level dimension in forcings.
forcings = dict(forcings)
for k in self._forcing_variables:
if k in forcings:
assert isinstance(forcings[k], (np.ndarray, jax.Array))
forcings[k] = forcings[k].squeeze(axis=-3) # pyrefly: ignore[missing-attribute]
return forcings
@jax.jit
@_static_gin_config
def encode(
self,
inputs: Inputs,
forcings: Forcings,
rng_key: typing.PRNGKeyArray | None = None,
) -> State:
"""Encode from pressure-level inputs & forcings to model state.
Args:
inputs: input data on pressure-levels, as a dict where each entry is an
array with shape `[level, longitude, latitude]` matching `data_coords`.
forcings: forcing data on pressure-levels, as a dict where each entry is
an array with shape `[level, longitude, latitude]` matching
`data_coords`. Single level data (e.g., sea surface temperature) should
have a `level` dimension of size 1.
rng_key: optional JAX RNG key to use for encoding the state. Required if
using stochastic models, otherwise ignored.
Returns:
Dynamical core state on sigma levels, where all arrays have dimensions
`[level, zonal_wavenumber, total_wavenumber]` matching `model_coords`.
"""
sim_time = inputs['sim_time']
inputs = self._to_abbreviated_names_and_tracers(inputs)
inputs = _prepend_dummy_time_axis(inputs)
forcings = self._squeeze_level_from_forcings(forcings)
forcings = _prepend_dummy_time_axis(forcings)
f = self._structure.forcing_fn(self.params, None, forcings, sim_time)
return self._structure.encode_fn(self.params, rng_key, inputs, f)
@jax.jit
@_static_gin_config
def advance(self, state: State, forcings: Forcings) -> State:
"""Advance model state one timestep forward.
Args:
state: dynamical core state on sigma levels, where all arrays have
dimensions `[level, zonal_wavenumber, total_wavenumber]` matching
`model_coords`
forcings: forcing data on pressure-levels, as a dict where each entry is
an array with shape `[level, longitude, latitude]` matching
`data_coords`. Single level data (e.g., sea surface temperature) should
have a `level` dimension of size 1.
Returns:
State advanced one time-step forward.
"""
sim_time = _sim_time_from_state(state)
forcings = self._squeeze_level_from_forcings(forcings)
forcings = _prepend_dummy_time_axis(forcings)
f = self._structure.forcing_fn(self.params, None, forcings, sim_time)
state = self._structure.advance_fn(self.params, None, state, f)
return state
@jax.jit
@_static_gin_config
def decode(self, state: State, forcings: Forcings) -> Outputs:
"""Decode from model state to pressure-level outputs.
Args:
state: dynamical core state on sigma levels, where all arrays have
dimensions `[level, zonal_wavenumber, total_wavenumber]` matching
`model_coords`.
forcings: forcing data on pressure-levels, as a dict where each entry is
an array with shape `[level, longitude, latitude]` matching
`data_coords`. Single level data (e.g., sea surface temperature) should
have a `level` dimension of size 1.
Returns:
Outputs on pressure-levels, as a dict where each entry is an array with
shape `[level, longitude, latitude]` matching `data_coords`.
"""
sim_time = _sim_time_from_state(state)
forcings = self._squeeze_level_from_forcings(forcings)
forcings = _prepend_dummy_time_axis(forcings)
f = self._structure.forcing_fn(self.params, None, forcings, sim_time)
outputs = self._structure.decode_fn(self.params, None, state, f)
outputs = self._from_abbreviated_names_and_tracers(outputs)
return outputs
@functools.partial(
jax.jit,
static_argnames=[
'steps',
'timedelta',
'start_with_input',
'post_process_fn',
],
)
@_static_gin_config
def unroll(
self,
state: State,
forcings: TemporalForcings,
*,
steps: int,
timedelta: TimedeltaLike | None = None,
start_with_input: bool = False,
post_process_fn: Callable[[State], Any] | None = None,
) -> tuple[State, BatchedOutputs]:
"""Unroll predictions over many time-steps.
Usage:
advanced_state, outputs = model.unroll(state, forcings, steps=N)
where ``advanced_state`` is the advanced model state after ``N`` steps and
``outputs`` is a trajectory of decoded states on pressure-levels with a
leading dimension of size ``N``.
Args:
state: initial model state.
forcings: forcing data over the time-period spanned by the desired output
trajectory. Should include a leading time-axis, but times can be at any
desired granularity (e.g., it should be fine to supply daily forcing
data, even if producing hourly outputs). The nearest forcing in time
will be used for each internal ``advance()`` and ``decode()`` call.
steps: number of time-steps to take.
timedelta: size of each time-step to take, which must be a multiple of the
internal model timestep. By default uses the internal model timestep.
start_with_input: if ``True``, outputs are at times ``[0, ..., (steps - 1)
* timestep]`` relative to the initial time; if ``False``, outputs are at
times ``[timestep, ..., steps * timestep]``.
post_process_fn: optional function to apply to each advanced state and
current forcings to create outputs like ``post_process_fn(state,
forcings)``, where ``forcings`` does not include a time axis. By
default, uses ``model.decode``.
Returns:
A tuple of the advanced state at time ``steps * timestamp``, and outputs
with a leading ``time`` axis at the time-steps specified by ``steps``,
``timedelta`` and ``start_with_input``.
"""
if timedelta is None:
timedelta = self.timestep
def get_nearest_forcings(sim_time):
times = forcings['sim_time']
assert isinstance(times, jax.Array)
approx_index = jnp.interp(sim_time, times, jnp.arange(times.size))
index = jnp.round(approx_index).astype(jnp.int32)
return jax.tree.map(lambda x: x[index, ...], forcings)
def with_nearest_forcings(func):
def wrapped(state):
sim_time = _sim_time_from_state(state)
forcings = get_nearest_forcings(sim_time)
return func(state, forcings)
return wrapped
if post_process_fn is None:
post_process_fn = self.decode
inner_steps = _calculate_sub_steps(self.timestep, timedelta)
trajectory_func = time_integration.trajectory_from_step(
with_nearest_forcings(self.advance),
outer_steps=steps,
inner_steps=inner_steps,
start_with_input=start_with_input,
post_process_fn=with_nearest_forcings(post_process_fn),
)
state, outputs = trajectory_func(state)
return state, outputs
@classmethod
def from_checkpoint(cls, checkpoint: Any) -> PressureLevelModel:
"""Creates a PressureLevelModel from a checkpoint.
Args:
checkpoint: dictionary with keys "model_config_str", "aux_ds_dict" and
"params" that specifies model gin configuration, supplemental xarray
dataset with model-specific static features, and model parameters.
Returns:
Instance of a `PressureLevelModel` with weights and configuration
specified by the checkpoint.
"""
# Hard code radius=1.0 to enable breaking changes in Dinosaur.
model_config_str = (
checkpoint['model_config_str'].replace(
'GridWithWavenumbers.radius = None',
'GridWithWavenumbers.radius = 1.0',
)
+ '\n\n'
+ '\n'.join([
'GridTL63.radius = 1.0',
'GridTL127.radius = 1.0',
'GridTL255.radius = 1.0',
])
)
with gin_utils.specific_config(model_config_str):
physics_specs = physics_specifications.get_physics_specs()
aux_ds = xarray.Dataset.from_dict(checkpoint['aux_ds_dict'])
data_coords = model_builder.coordinate_system_from_dataset(aux_ds)
model_specs = model_builder.get_model_specs(
data_coords, physics_specs, {xarray_utils.XARRAY_DS_KEY: aux_ds}
)
whirl_model = model_builder.WhirlModel(
coords=model_specs.coords,
dt=model_specs.dt,
physics_specs=model_specs.physics_specs,
aux_features=model_specs.aux_features,
input_coords=data_coords,
output_coords=data_coords,
)
return cls(whirl_model, checkpoint['params'], model_config_str)
|