File size: 23,344 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 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 | # 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.
"""Metrics and loss functions for NeuralGCM."""
from __future__ import annotations
import dataclasses
import functools
from typing import Callable, Optional, Sequence
from dinosaur import coordinate_systems
from dinosaur import horizontal_interpolation
from dinosaur import spherical_harmonic
from dinosaur import typing
from dinosaur import vertical_interpolation
import gin
import jax
import jax.numpy as jnp
import model.reference_code.linear_transforms as linear_transforms
import model.reference_code.metrics_base as metrics_base
import model.reference_code.metrics_util as metrics_util
from model.legacy import model_utils
import numpy as np
import model.reference_code.train_utils as train_utils
Pytree = typing.Pytree
TrajectoryRepresentations = typing.TrajectoryRepresentations
tree_leaves = jax.tree_util.tree_leaves
tree_map = jax.tree_util.tree_map
def _compute_spectral_norm(
x: typing.Array, coords: coordinate_systems.CoordinateSystem
) -> typing.Array:
"""Computes spectral norm of nodal inputs `x`."""
x = coordinate_systems.maybe_to_modal(x, coords)
# axis = -2 corresponds to the longitudinal wavenumber.
return model_utils.safe_sqrt(
jnp.sum((x * x.conj()).real, axis=-2, keepdims=True)
)
@gin.register
def _spectral_amplitude(
x: typing.Array, coords: coordinate_systems.CoordinateSystem
) -> typing.Array:
"""Computes spectral amplitude ."""
x = coordinate_systems.maybe_to_modal(x, coords)
return jnp.abs(x)
@gin.register
@dataclasses.dataclass
class TransformedL2Loss(metrics_base.Loss):
"""L2 loss on linearly transformed errors."""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
components: Sequence[linear_transforms.LinearTransformConstructor],
is_nodal: bool = True,
is_encoded: bool = False,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
time_step: Optional[int | slice] = None,
):
super().__init__(
trajectory_spec,
is_nodal=is_nodal,
is_encoded=is_encoded,
time_step=time_step,
)
self.components = components
self.getter = getter
self.transform = linear_transforms.ComposedTransformForLoss(
trajectory_spec, components
)
def evaluate_per_variable(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> Pytree:
prediction = self.get_representation(prediction)
target = self.get_representation(target)
trajectory = self.getter(prediction)
target = self.getter(target)
errors = tree_map(jnp.subtract, trajectory, target)
transformed_errors = self.transform(errors, target)
squared_transformed_errors = tree_map(jnp.square, transformed_errors)
return self.mean_per_variable(squared_transformed_errors)
@gin.register
@dataclasses.dataclass
class TransformedL2SpectrumLoss(metrics_base.Loss):
"""L2 loss on linearly transformed errors of spectal norms.
Here we define spectrum norm at a given total wavenumber as the length of the
vector formed by longitude wavenumbers. i.e. for a field `x` with indices
`{z, m, l}` corresponding to level, longitude wavenumber, total wavenumber
we have:
spectrum_norm(x)_{z, l} = ||x_{z, :, l}||₂
The loss is then computed as MSE(spectrum_norm(x), spectrum_norm(y)) where
`x` and `y` are predicted and target signals in modal representation.
"""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
components: Sequence[linear_transforms.LinearTransformConstructor],
is_nodal: bool = True,
is_encoded: bool = False,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
time_step: Optional[int | slice] = None,
):
super().__init__(
trajectory_spec,
is_nodal=is_nodal,
is_encoded=is_encoded,
time_step=time_step,
)
if self.is_encoded:
coords = trajectory_spec.coords
else:
coords = trajectory_spec.data_coords
spectrum_fn = lambda x: _compute_spectral_norm(x, coords)
self.components = components
self.getter = getter
self.spectrum_fn = lambda tree: tree_map(spectrum_fn, tree)
self.transform = linear_transforms.ComposedTransformForLoss(
trajectory_spec, components
)
def mean_per_variable(self, trajectory: Pytree) -> Pytree:
return tree_map(jnp.mean, trajectory)
def evaluate_per_variable(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> Pytree:
prediction = self.get_representation(prediction)
target = self.get_representation(target)
trajectory_spectrum = self.spectrum_fn(self.getter(prediction))
target_spectrum = self.spectrum_fn(self.getter(target))
errors = tree_map(jnp.subtract, trajectory_spectrum, target_spectrum)
transformed_errors = self.transform(errors, target)
squared_transformed_errors = tree_map(jnp.square, transformed_errors)
return self.mean_per_variable(squared_transformed_errors)
@gin.register
@dataclasses.dataclass
class SumLoss(metrics_base.Loss):
"""Loss that consists of a sum of separate losses."""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
terms: Sequence[Callable[..., metrics_base.Loss]],
labels: Optional[Sequence[str]] = None,
time_step: Optional[int | slice] = None,
):
super().__init__(trajectory_spec)
self.losses = [term(trajectory_spec, time_step=time_step) for term in terms]
if labels is not None:
if len(labels) != len(self.losses):
raise ValueError(f'Not all losses are labeled: {labels}, {len(terms)=}')
self.labels = labels
else:
self.labels = [''] * len(self.losses)
def evaluate_per_variable(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> Pytree:
all_per_variable_losses = [
loss.evaluate_per_variable(prediction, target) for loss in self.losses
]
output = {}
for per_variable_loss, prefix in zip(all_per_variable_losses, self.labels):
for k, v in per_variable_loss.items():
if isinstance(v, dict):
current_values = output.get(prefix + k, {})
for ik, iv in v.items():
current_values[ik] = current_values.get(ik, 0) + iv
output[prefix + k] = current_values
else:
output[prefix + k] = output.get(prefix + k, 0) + v
return output
def evaluate(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> Pytree:
return sum(loss.evaluate(prediction, target) for loss in self.losses)
def debug_loss_terms_instance(self) -> metrics_base.EvaluateFunctionWrapper:
"""Returns class that evaluates relative loss per variable."""
def evaluate_fn(
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> Pytree:
return train_utils.flatten_dict({
label: loss.debug_loss_terms_instance().evaluate(prediction, target)
for label, loss in zip(self.labels, self.losses)
})
return metrics_base.EvaluateFunctionWrapper(evaluate_fn)
@gin.register
def WeightedL2CumulativeLoss( # pylint: disable=invalid-name
trajectory_spec: metrics_util.TrajectorySpec,
weights: Pytree = None,
scale: float = 1.0,
) -> TransformedL2Loss:
"""Legacy wrapper for TransformedL2Loss with weighted cumulative error."""
components = [
linear_transforms.LegacyTimeRescaling,
functools.partial(
linear_transforms.PerVariableRescaling, weights=weights, scale=scale
),
]
return TransformedL2Loss(trajectory_spec, components)
@gin.register
class RMSE(metrics_base.ScalarMetric):
"""Root mean squared error."""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
time_step: int,
level: Optional[int] = None,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
is_nodal: bool = True,
is_encoded: bool = False,
is_ensemble_data: bool = False,
):
super().__init__(trajectory_spec, is_nodal=is_nodal, is_encoded=is_encoded)
self.time_step = time_step
self.level = level
self.getter = getter
self.is_ensemble_data = is_ensemble_data
def _prepare(self, trajectory: TrajectoryRepresentations) -> Pytree:
"""Prepares target or predictions."""
trajectory = metrics_util.extract_variable(
trajectory,
self.trajectory_spec,
self.time_step,
self.level,
self.getter,
self.is_nodal,
self.is_encoded,
)
if self.is_ensemble_data:
# Evaluate RMSE vs. the ensemble mean.
trajectory = jax.lax.pmean(trajectory, axis_name='ensemble')
return trajectory
def evaluate(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> jnp.ndarray:
"""Evaluates RMSE between prediction and target."""
prediction = self._prepare(prediction)
target = self._prepare(target)
squared_error = tree_map(lambda x, y: (x - y) ** 2, prediction, target)
mse_per_variable = self.mean_per_variable(squared_error)
return jnp.sqrt(sum(tree_leaves(mse_per_variable)))
@gin.register
class SpatialBiasRMSE(metrics_base.ScalarMetric):
"""Root mean squared error of spatial bias.
This is given by the formula:
RMSE(batch_average(prediction - target))
where `batch_average()` denotes an average over distinct weather forecasts
(initialization times or valid times) and ensemble members (if relevant).
"""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
time_step: int,
level: Optional[int] = None,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
is_nodal: bool = True,
is_encoded: bool = False,
is_batch_data: bool = True,
is_ensemble_data: bool = False,
):
super().__init__(trajectory_spec, is_nodal=is_nodal, is_encoded=is_encoded)
self.time_step = time_step
self.level = level
self.getter = getter
self.is_ensemble_data = is_ensemble_data
self.is_batch_data = is_batch_data
def _prepare(self, trajectory: TrajectoryRepresentations) -> Pytree:
"""Prepares target or predictions."""
trajectory = metrics_util.extract_variable(
trajectory,
self.trajectory_spec,
time_step=self.time_step,
level=self.level,
getter=self.getter,
is_nodal=self.is_nodal,
is_encoded=self.is_encoded,
)
if self.is_batch_data:
trajectory = jax.lax.pmean(trajectory, axis_name='batch')
if self.is_ensemble_data:
trajectory = jax.lax.pmean(trajectory, axis_name='ensemble')
return trajectory
def evaluate(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> jnp.ndarray:
"""Evaluates RMSE between prediction and target."""
prediction = self._prepare(prediction)
target = self._prepare(target)
squared_error = tree_map(lambda x, y: (x - y) ** 2, prediction, target)
mse_per_variable = self.mean_per_variable(squared_error)
return jnp.sqrt(sum(tree_leaves(mse_per_variable)))
@gin.register
class BatchMeanSquaredBias(metrics_base.Loss):
"""Mean squared error for a chosen metric.
This is given by the formula:
MSE(rollout_average(batch_average(prediction - target)))
where `batch_average()` denotes an average over distinct weather forecasts
(initialization times or valid times) or ensemble members (whichever is
vmapped first) and 'rollout_average()' denotes an average over all predicted
times. The MSE is taken over all nodal/modal points.
"""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
components: Sequence[linear_transforms.LinearTransformConstructor] = (),
observation_fn=_spectral_amplitude,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
is_nodal: bool = False,
is_encoded: bool = False,
time_step: Optional[int | slice] = None,
):
super().__init__(
trajectory_spec,
is_nodal=is_nodal,
is_encoded=is_encoded,
time_step=time_step,
)
if self.is_encoded:
coords = trajectory_spec.coords
else:
coords = trajectory_spec.data_coords
metric_fn = lambda x: observation_fn(x, coords)
self.components = components
self.getter = getter
self.metric_fn = lambda tree: tree_map(metric_fn, tree)
self.transform = linear_transforms.ComposedTransformForLoss(
trajectory_spec, components
)
def evaluate_per_variable(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> Pytree:
"""Evaluates the squere bias of a chosen metric between prediction and target.
Note: this method is only valid when vmapped.
Args:
prediction: a TrajectoryRepresentations of prediction
target: a TrajectoryRepresentations of ground truth
Returns:
Pytree of MSE
"""
prediction = self.get_representation(prediction)
target = self.get_representation(target)
# because this function applies average over time axis, we apply
# `TruncateToTrajectoryLength` prior to computing
truncate_transform = self.transform.transforms[0]
assert isinstance(
truncate_transform, linear_transforms.TruncateToTrajectoryLength
)
getter_fn = lambda x: self.getter(truncate_transform(x, None))
trajectory_calc = self.metric_fn(getter_fn(prediction))
target_calc = self.metric_fn(getter_fn(target))
# Batch mean over "ensemble" and "batch" dimensions
trajectory_calc = tree_map(metrics_util.pmean_all_axes, trajectory_calc)
target_calc = tree_map(metrics_util.pmean_all_axes, target_calc)
# Time mean:
trajectory_calc = tree_map(
lambda x,: jnp.mean(x, axis=0, keepdims=True), trajectory_calc
)
target_calc = tree_map(
lambda x,: jnp.mean(x, axis=0, keepdims=True), target_calc
)
errors = tree_map(jnp.subtract, trajectory_calc, target_calc)
transformed_errors = self.transform(errors, target)
squared_transformed_errors = tree_map(jnp.square, transformed_errors)
mse_per_variable = tree_map(jnp.mean, squared_transformed_errors)
return mse_per_variable
@gin.register
class MAE(metrics_base.ScalarMetric):
"""Mean absolute error."""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
time_step: int,
level: Optional[int] = None,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
is_nodal: bool = True,
is_encoded: bool = False,
):
super().__init__(trajectory_spec, is_nodal=is_nodal, is_encoded=is_encoded)
self.time_step = time_step
self.level = level
self.getter = getter
def _prepare(self, trajectory: TrajectoryRepresentations) -> Pytree:
return metrics_util.extract_variable(
trajectory,
self.trajectory_spec,
self.time_step,
self.level,
self.getter,
self.is_nodal,
self.is_encoded,
)
def evaluate(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> jnp.ndarray:
prediction = self._prepare(prediction)
target = self._prepare(target)
abs_error = tree_map(lambda x, y: abs(x - y), prediction, target)
mse_per_variable = self.mean_per_variable(abs_error)
flat_mse = tree_leaves(mse_per_variable)
return sum(flat_mse) / len(flat_mse)
@jax.jit
def weighted_quantile(
data: jax.Array, quantile: jax.Array, weights: jax.Array
) -> jax.Array:
"""Calculate a weighted quantile."""
if data.shape != weights.shape:
raise ValueError(f'incompatible shapes: {data.shape=} != {weights.shape=}')
data = data.ravel()
weights = weights.ravel() / weights.sum()
indices = jnp.argsort(data)
cum_weights = weights[indices].cumsum()
return jnp.interp(quantile, cum_weights, data[indices])
@dataclasses.dataclass
class AbsErrorQuantile(metrics_base.ScalarMetric):
"""Quantile of absolute error."""
def __init__(
self,
trajectory_spec: metrics_util.TrajectorySpec,
quantile: float,
time_step: int,
level: Optional[int] = None,
getter: Callable[[Pytree], Pytree] = metrics_util.filter_sim_time,
is_nodal: bool = True,
is_encoded: bool = False,
is_ensemble_data: bool = False,
):
super().__init__(trajectory_spec, is_nodal=is_nodal, is_encoded=is_encoded)
self.quantile = quantile
self.time_step = time_step
self.level = level
self.getter = getter
self.is_ensemble_data = is_ensemble_data
def _prepare(self, trajectory: TrajectoryRepresentations) -> Pytree:
return metrics_util.extract_variable(
trajectory,
self.trajectory_spec,
self.time_step,
self.level,
self.getter,
self.is_nodal,
self.is_encoded,
)
def _get_weights(self) -> np.ndarray:
if self.is_encoded:
coords = self.trajectory_spec.coords
else:
coords = self.trajectory_spec.data_coords
if self.is_nodal:
weights = coords.horizontal.quadrature_weights
else:
weights = coords.horizontal.mask
return weights
def evaluate(
self,
prediction: TrajectoryRepresentations,
target: TrajectoryRepresentations,
) -> jnp.ndarray:
prediction = self._prepare(prediction)
target = self._prepare(target)
abs_error = tree_map(lambda x, y: abs(x - y), prediction, target)
weights = jnp.broadcast_to(self._get_weights(), target.shape)
result = tree_map(
lambda e: weighted_quantile(e, self.quantile, weights), abs_error
)
if self.is_ensemble_data:
# metrics must be consistent across the ensmble dimension.
result = jax.lax.pmean(result, axis_name='ensemble')
return result
def weatherbench2_rmse_metrics(
trajectory_spec: metrics_util.TrajectorySpec,
time_steps: Sequence[int],
is_ensemble_data: bool = False,
extra_metric_grids: Optional[dict[str, spherical_harmonic.Grid]] = None,
) -> dict[str, metrics_base.Metric]:
"""RMSE based metrics for WeatherBench2."""
metric_grids = {} if extra_metric_grids is None else extra_metric_grids.copy()
trajectory_grid = trajectory_spec.coords.horizontal
if trajectory_grid not in metric_grids.values():
metric_grids['Traj'] = trajectory_grid
def get_and_regrid(tree, regrid_fn, getter):
return tree_map(regrid_fn, getter(tree))
metrics = {}
for name, grid in metric_grids.items():
if grid == trajectory_grid:
regrid = lambda tree: tree
rmse_traj_spec = trajectory_spec
else:
regrid = horizontal_interpolation.ConservativeRegridder(
source_grid=trajectory_spec.coords.horizontal, target_grid=grid
)
rmse_traj_spec = dataclasses.replace(
trajectory_spec,
# Only data_coords needs to be replaced since RMSE.is_encoded=False.
data_coords=dataclasses.replace(
trajectory_spec.data_coords,
horizontal=grid,
),
)
for time_step in time_steps:
for var, level, getter in [
('T', 850, lambda x: x['t']),
('Z', 500, lambda x: x['z']),
('UV', 700, lambda x: (x['u'], x['v'])),
('Q', 700, lambda x: 1000 * x['tracers']['specific_humidity']),
]:
t = time_step * trajectory_spec.steps_per_save
key = f'RMSE[{name}]_{var}{level}_{t:03d}_hours'
metrics[key] = RMSE(
rmse_traj_spec,
is_encoded=False, # To make this (default) clear.
time_step=time_step,
level=level,
getter=functools.partial(
get_and_regrid, regrid_fn=regrid, getter=getter
),
is_ensemble_data=is_ensemble_data,
)
return metrics
def default_metrics(
trajectory_spec: metrics_util.TrajectorySpec,
eval_time_steps: Sequence[int],
train_loss: metrics_base.Loss,
is_batch_data: bool = True,
is_ensemble_data: bool = False,
) -> dict[str, metrics_base.Evaluator]:
"""Default evaluation metrics for Whirl models."""
metrics_dict = {
'training_loss': train_loss,
'debug': train_loss.debug_loss_terms_instance(),
}
if isinstance(
trajectory_spec.data_coords.vertical,
vertical_interpolation.PressureCoordinates,
):
tl31_grid = dataclasses.replace(
spherical_harmonic.Grid.TL31(),
spherical_harmonics_impl=trajectory_spec.data_coords.horizontal.spherical_harmonics_impl,
)
metrics_dict.update(
weatherbench2_rmse_metrics(
trajectory_spec,
eval_time_steps,
is_ensemble_data=is_ensemble_data,
extra_metric_grids={'TL31': tl31_grid},
)
)
for time_step in eval_time_steps:
t = time_step * trajectory_spec.steps_per_save
for var, getter in [
('T', lambda x: x['t']),
('Z', lambda x: x['z']),
('UV', lambda x: (x['u'], x['v'])),
('Q', lambda x: 1000 * x['tracers']['specific_humidity']),
]:
key = f'rmse_{var}_all_levels_{t:03d}_hours'
metrics_dict[key] = RMSE(
trajectory_spec,
time_step=time_step,
level=None,
getter=getter,
is_ensemble_data=is_ensemble_data,
)
for var, level, getter in [
('T', 850, lambda x: x['t']),
('Z', 500, lambda x: x['z']),
('U', 700, lambda x: x['u']),
('V', 700, lambda x: x['v']),
('Q', 700, lambda x: 1000 * x['tracers']['specific_humidity']),
]:
key = f'spatial_bias_rmse_{var}{level}_{t:03d}_hours'
metrics_dict[key] = SpatialBiasRMSE(
trajectory_spec,
time_step=time_step,
level=level,
getter=getter,
is_batch_data=is_batch_data,
is_ensemble_data=is_ensemble_data,
)
for var, level, getter in [
('T', 850, lambda x: x['t']),
('Z', 500, lambda x: x['z']),
('U', 700, lambda x: x['u']),
('V', 700, lambda x: x['v']),
('Q', 700, lambda x: 1000 * x['tracers']['specific_humidity']),
]:
for q in [0.99]:
key = f'abs_error_q{q}_{var}{level}_{t:03d}_hours'
metrics_dict[key] = AbsErrorQuantile(
trajectory_spec,
quantile=q,
time_step=time_step,
level=level,
getter=getter,
is_ensemble_data=is_ensemble_data,
)
return metrics_dict
|