File size: 50,365 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 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 | # 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.
# pylint: disable=line-too-long
r"""Pseudocode for training NeuralGCM models."""
from collections.abc import Iterable, Iterator, Mapping, Sequence
import dataclasses
import functools
import logging
import math
from typing import Any, Callable, NamedTuple, Optional, cast
from absl import app
import datasets
from dinosaur import typing
from dinosaur import xarray_utils
import gin
from google_proprietary_code import checkpoint
from google_proprietary_code import experiment
from google_proprietary_code import experiment_utils
# proprietary imports
from google_proprietary_code import profiling_util
from google_proprietary_code import streaming
from google_proprietary_code import timing_util
import haiku as hk
import jax
import jax.numpy as jnp
import jax.sharding
import model.reference_code.metrics as metrics
import model.reference_code.metrics_base as metrics_base
import model.reference_code.metrics_util as metrics_util
from ml_collections import config_dict
from model.legacy import model_builder
from model.legacy import model_utils
from model.legacy import optimization
from model.legacy import physics_specifications
import numpy as np
import optax
import pandas as pd
import model.reference_code.reader as reader
import model.reference_code.stochastic_losses as stochastic_losses
import tensorflow as tf
import model.reference_code.train_utils as train_utils
import xarray
Params = typing.Params
PyTree = Any
TrajectoryRepresentations = typing.TrajectoryRepresentations
TrajectoryFn = Callable[
[Params, jax.Array, PyTree, PyTree],
tuple[TrajectoryRepresentations, TrajectoryRepresentations],
]
tree_map = jax.tree_util.tree_map
# pylint: disable=logging-format-interpolation
# pylint: disable=logging-fstring-interpolation
@gin.configurable(allowlist=['constructor'])
def get_loss_obj(
trajectory_spec: metrics_util.TrajectorySpec,
constructor: Callable[..., metrics_base.Loss] = gin.REQUIRED,
) -> metrics_base.Loss:
"""Returns configured loss_fn on first `trajectory_length` time slices."""
return constructor(trajectory_spec)
EvaluatorDict = dict[str, metrics_base.Evaluator]
TrainEvalIteratorTuple = tuple[
Iterator[Any],
train_utils.TrainStepFunction,
Callable[..., Any],
dict[str, Any],
]
@gin.configurable(allowlist=['constructor'])
def get_metrics_dict(
trajectory_spec: metrics_util.TrajectorySpec,
eval_time_steps: Sequence[int],
loss: metrics_base.Loss,
constructor: Callable[..., EvaluatorDict] = metrics.default_metrics,
is_ensemble_data: bool = False,
) -> EvaluatorDict:
"""Returns configured loss_fn on first `trajectory_length` time slices."""
return constructor(
trajectory_spec, eval_time_steps, loss, is_ensemble_data=is_ensemble_data
)
# start legacy configurables
#
# Keep these around for now (even though they are no-ops) so we can run
# inference on old models.
@gin.configurable
def get_loss_fn(loss_fn):
raise NotImplementedError
@gin.register
def weighted_l2_cumulative_loss(weights, scale):
raise NotImplementedError
# end legacy configurables
def ema_params_tree(num_steps):
"""Creates an EMAParamsTree object based on num_steps.
Args:
num_steps: average number of optimization steps to include in the
exponential moving average of model weights.
Returns:
Haiku module.
"""
# https://en.wikipedia.org/wiki/Moving_average#Relationship_between_SMA_and_EMA
decay = 1 - 2 / (num_steps + 1)
return hk.EMAParamsTree(decay)
def _model_inner_steps_for_data(
ds: xarray.Dataset,
model_specs: model_builder.ModelSpecs,
rtol: float = 1e-6,
) -> int:
"""Calculates model inner steps based on data time step."""
data_dt = xarray_utils.nondim_time_delta_from_time_axis(
ds.time.data, model_specs.physics_specs
)
inner_steps = round(data_dt / model_specs.dt)
if abs(inner_steps * model_specs.dt - data_dt) / data_dt > rtol:
raise RuntimeError( # pylint: disable=g-doc-exception
f'{model_specs.dt=} does not divide evenly into {data_dt=}'
)
return inner_steps
def _get_datetime_forecast_starts(
sample_count: int,
first_start: pd.Timestamp,
last_start: pd.Timestamp,
) -> pd.DatetimeIndex:
"""Get equispaced forecast start times for evaluating against ERA5."""
if first_start.hour != 0:
raise ValueError(f'dataset times must start at midnight: {first_start=}')
# Round-up to midnight following the last forecast day (e.g., the start of
# the next year).
stop = last_start.ceil('1D')
# Equally spaced from start (inclusive) to stop (exclusive).
start_times = pd.date_range(first_start, stop, periods=sample_count + 1)[:-1]
# To match ECMWF, all forecasts should be initialized at 0z or 12z. Here we
# alternate start times.
parity = np.arange(sample_count) % 2
return start_times.round('1D') + parity * pd.Timedelta('12H')
P = jax.sharding.PartitionSpec
class ExperimentState(NamedTuple):
opt_state: PyTree
params: PyTree
ema_params: PyTree
class Experiment(experiment.AbstractExperiment):
"""Training experiment based on trajectory loss minimization."""
def __init__(
self,
experiment_dir: str,
config: Optional[config_dict.ConfigDict] = None,
):
"""Creates an instance of a training scheme class.
Args:
experiment_dir: Path to experiment directory.
config: config struct setting up the experiment.
"""
if config is None:
config = experiment_config.get_config()
super().__init__(
experiment_dir,
config.distributed_training,
writer_names=['train', 'eval', 'eval_ema'],
)
logging.info('Experiment config:\n%s', config)
self.config = config
self.train_ds = xarray_utils.open_dataset(config.train_dataset_path)
self.eval_ds = xarray_utils.open_dataset(config.eval_dataset_path)
if 'sample' in self.train_ds.dims:
logging.warning('only using the first sample!')
self.train_ds = self.train_ds.isel(sample=0, drop=True)
self.eval_ds = self.eval_ds.isel(sample=0, drop=True)
train_attrs = self.train_ds.attrs
# Model instantiation and trajectory unroll functions
# Note: we use interactive mode in experiments to split gin-configurations
# into separate, distinct parts provided in the config_dict.
gin.enter_interactive_mode()
self.is_nodal = self.config.is_nodal
# parse and override all the gin things
gin.parse_config(config.model_gin_config)
gin.parse_config(config.optimizer_gin_config)
experiment_utils.parse_config_dict(config.gin_overrides)
logging.info('Parsed gin config string:\n%s', gin.config_str())
full_model_gin_config = gin.config_str() # do not include physics config.
logging.info('With overrides gin config string:\n%s', gin.config_str())
self.data_coords = model_builder.coordinate_system_from_dataset(
self.train_ds
)
logging.info(f'{self.model_parallel_training=}')
if self.model_parallel_training:
# It does not make sense to use spatial parallelism with batch size per
# device larger than 1. Instead, you would get better performance from
# using less model parallelism.
if self.spatial_parallelism > 1 and self.config.batch_size_per_device > 1:
raise NotImplementedError(
f'{self.config.batch_size_per_device=} is not supported for model '
'parallel training'
)
self.data_coords = dataclasses.replace(
self.data_coords, spmd_mesh=self.spmd_mesh
)
# try getting aux_features from dataset, if not included we rely on
# `model_builder.get_model_specs` to supply necessary values.
try:
data_aux_features = xarray_utils.aux_features_from_xarray(self.train_ds)
except KeyError:
data_aux_features = {}
# when available, we parse physics_config_str from metadata in train_attrs.
if 'physics_config_str' in train_attrs:
physics_config_str = train_attrs['physics_config_str']
experiment_utils.parse_gin_config_without_imports(physics_config_str)
else:
logging.info(
'physics_config_str was not provided in the dataset, '
'hence it is expected to be specified in model_gin_config.'
)
self.physics_specs = physics_specifications.get_physics_specs()
self.model_specs = model_builder.get_model_specs(
self.data_coords, self.physics_specs, data_aux_features
)
logging.info(f'{self.model_specs=}')
self.train_inner_steps = _model_inner_steps_for_data(
self.train_ds, self.model_specs
)
self.eval_inner_steps = _model_inner_steps_for_data(
self.eval_ds, self.model_specs
)
if (
len(self.config.train_schedule_time_steps)
!= len(self.config.train_schedule_boundaries) + 1
):
raise ValueError(
f'{self.config.train_schedule_time_steps} should be one longer '
f'than {self.config.train_schedule_boundaries} but was not.'
)
if any(
t % self.train_inner_steps
for t in self.config.train_schedule_time_steps
):
raise ValueError(
f'{self.train_inner_steps=} does not divide '
f'{self.config.train_schedule_time_steps=}'
)
if any(t % self.eval_inner_steps for t in self.config.eval_time_steps):
raise ValueError(
f'{self.eval_inner_steps=} does not divide '
f'{self.config.eval_time_steps=}'
)
if max(self.config.eval_time_steps) < max(
self.config.train_schedule_time_steps
):
raise ValueError(
f'Training will not work since {max(self.config.eval_time_steps)=} <'
f' {max(self.config.train_schedule_time_steps)=}'
)
self._eval_trajectory_length = (
max(self.config.eval_time_steps) // self.eval_inner_steps + 1
)
self._trajectory_lengths = [
self.config.num_init_frames + n // self.train_inner_steps
for n in self.config.train_schedule_time_steps
]
self._max_trajectory_length = max(
self._trajectory_lengths + [self._eval_trajectory_length]
)
self.reference_datetime = self.model_specs.aux_features[
xarray_utils.REFERENCE_DATETIME_KEY
]
self.whirl_model = model_builder.WhirlModel(
**self.model_specs,
input_coords=self.data_coords,
output_coords=self.data_coords,
)
self.from_xarray_fn = self.whirl_model.from_xarray_fn
def trajectory_fwd(x, forcing_data, model, outer_steps, inner_steps):
trajectory_fn = model_utils.trajectory_with_inputs_and_forcing(
model, config.num_init_frames, start_with_input=True
)
return trajectory_fn(x, forcing_data, outer_steps, inner_steps)
self._trajectory_fwd = trajectory_fwd
# Checkpoint items.
self._model_dt = self.model_specs.dt
self._model_gin_config = full_model_gin_config
# optimizer configuration.
self.optimizer = optimization.optimizer()
# exponentially moving average params tracking.
ema_fn = hk.without_apply_rng(
hk.transform_with_state(
lambda x: ema_params_tree(config.ema_num_steps)(x) # pylint: disable=unnecessary-lambda
)
)
self._ema_init = jax.jit(ema_fn.init)
def ema_update(params, ema_state):
return ema_fn.apply(None, ema_state, params)
self._ema_update = jax.jit(ema_update)
logging.info('Final active config string:\n%s', gin.config_str())
#
# Data inputs methods.
#
@functools.cached_property
def spmd_mesh(self) -> jax.sharding.Mesh:
n = self.config.model_parallelism.ensemble_shards
z = self.config.model_parallelism.z_shards
x = self.config.model_parallelism.x_shards
y = self.config.model_parallelism.y_shards
global_batch = jax.device_count() // (n * z * x * y)
if global_batch == 0:
raise ValueError(
f'{jax.device_count()=} is insufficient for '
f'{self.config.model_parallelism=}'
)
return train_utils.create_spmd_mesh(
{'batch': global_batch, 'ensemble': n, 'z': z, 'x': x, 'y': y}
)
@functools.cached_property
def degree_of_model_parallelism(self) -> int:
return math.prod(v for k, v in self.spmd_mesh.shape.items() if k != 'batch')
@functools.cached_property
def model_parallel_training(self) -> bool:
return self.degree_of_model_parallelism > 1
@functools.cached_property
def spatial_parallelism(self) -> int:
return math.prod(self.spmd_mesh.shape[k] for k in 'zxy')
def to_global_array(self, pytree: PyTree, global_batch_size: int) -> PyTree:
"""Create a pytree of global JAX arrays from a pytree of NumPy arrays."""
# partition arrays along batch and spatial dimensions
return train_utils.make_distributed_array_from_local_arrays(
pytree,
self.spmd_mesh,
self.data_coords.physics_partition_spec,
global_batch_size,
)
def num_eval_batches(self, large_eval: bool) -> int:
if large_eval:
return self.config.num_eval_batches[-1]
else:
return self.config.num_eval_batches[0]
def steps_between_evals(self, large_eval: bool) -> int:
if large_eval:
return self.config.steps_between_evals[-1]
else:
return self.config.steps_between_evals[0]
def eval_batch_size_per_device(self, large_eval: bool) -> int:
if large_eval:
return self.config.eval_batch_size_per_device[-1]
else:
return self.config.eval_batch_size_per_device[0]
@functools.cached_property
def global_batch_size(self) -> int:
return (
jax.device_count()
// self.degree_of_model_parallelism
* self.config.batch_size_per_device
)
def global_eval_batch_size(self, large_eval: bool) -> int:
return (
jax.device_count()
// self.degree_of_model_parallelism
* self.eval_batch_size_per_device(large_eval)
)
def local_eval_batch_size(self, large_eval: bool) -> int:
return jax.local_device_count() * self.eval_batch_size_per_device(
large_eval
)
def _to_dataset_iter(
self, data: tf.data.Dataset, template: xarray.Dataset
) -> Callable[[], Iterable[Any]]:
"""Convert a tf.data.Dataset into a function that makes a data iterator."""
leading_dims_set = {x.shape[:2] for x in data.element_spec.values()}
assert len(leading_dims_set) == 1, leading_dims_set
local_batch_size, time_series_length = leading_dims_set.pop()
template = (
template.drop_vars('time')
.head(time=time_series_length)
.pipe(xarray.zeros_like) # replace data with zeros
.pipe(datasets.drop_static_vars)
.transpose('time', ...)
.expand_dims(batch=local_batch_size)
)
def make_iterator():
for example_dict in data.as_numpy_iterator():
yield self.from_xarray_fn(template.copy(data=example_dict))
return make_iterator
def _read_shuffled_shard(
self,
dataset: xarray.Dataset,
time_series_length: int,
min_buffer_blocks: int,
shard_index: int,
shard_count: int,
) -> tf.data.Dataset:
sampler = reader.Windower(
window_size=time_series_length,
stride_between_windows=self.config.train_time_sample_offset,
)
local_shard_count = max(
self.degree_of_model_parallelism, jax.local_device_count()
)
seed = train_utils.combine_rng_seeds(
self.config.dataset_rng_seed, shard_index, time_series_length
)
data = reader.read_shuffled_shard(
dataset,
sampler,
block_size_in_bytes=self.config.block_size_in_bytes / local_shard_count,
buffer_size_in_bytes=(
self.config.shuffle_buffer_size_in_bytes / local_shard_count
),
min_buffer_blocks=min_buffer_blocks,
shard_index=shard_index,
shard_count=shard_count,
seed=seed,
)
return data
def _get_train_dataset(self) -> xarray.Dataset:
train_dataset = xarray_utils.ds_with_sim_time(
self.train_ds, self.physics_specs, self.reference_datetime
)
if self.config.train_dataset_time_slice:
time_slice = slice(*self.config.train_dataset_time_slice)
train_dataset = train_dataset.sel(time=time_slice)
if self.config.time_subsample_rate != 1:
raise NotImplementedError('subsampling on the fly is not supported yet')
if self.config.add_noise_to_input:
raise NotImplementedError('add_noise_to_input not supported yet')
return train_dataset
def _spatial_addressable_indices_map(
self, spatial_dim_sizes: tuple[int, int, int]
) -> Mapping[jax.Device, tuple[slice, slice, slice, slice]]:
"""Get slices for indexing global arrays to local devices."""
spec = P('batch', *self.data_coords.physics_partition_spec)
sharding = jax.sharding.NamedSharding(self.spmd_mesh, spec)
global_shape = (self.global_batch_size,) + spatial_dim_sizes
indices_map = sharding.addressable_devices_indices_map(global_shape)
indices_map = cast(
Mapping[jax.Device, tuple[slice, slice, slice, slice]], indices_map
)
return indices_map
def _read_model_parallel_dataset(
self,
dataset: xarray.Dataset,
read_shard: Callable[[xarray.Dataset, int], tf.data.Dataset],
) -> tuple[tf.data.Dataset, xarray.Dataset]:
"""Read a shard of a training dataset into tf.data.Dataset."""
indices_map = self._spatial_addressable_indices_map(
tuple(dataset.sizes[k] for k in ['level', 'longitude', 'latitude'])
)
shard_data: list[tf.data.Dataset] = []
for device in jax.local_devices():
indices = indices_map[device]
batch_index = indices[0].start or 0
selection = dict(zip(['level', 'longitude', 'latitude'], indices[1:]))
shard_dataset = dataset.isel(selection)
shard_data.append(read_shard(shard_dataset, batch_index))
choices = tf.data.Dataset.range(jax.local_device_count()).repeat()
data = tf.data.Dataset.choose_from_datasets(shard_data, choices)
template = shard_dataset
return data, template
def _build_train_inputs(
self, time_series_length: int
) -> tuple[Callable[[], Any], dict[str, Any]]:
"""Loads the training dataset and returns an iterator and train_attrs."""
train_dataset = self._get_train_dataset()
local_batch_size = (
# Size of data needed to satisfy batch_size_per_device.
self.config.batch_size_per_device
* jax.local_device_count()
)
if self.model_parallel_training:
def read_shard(shard_dataset, batch_index):
return self._read_shuffled_shard(
shard_dataset,
time_series_length,
min_buffer_blocks=1,
shard_index=batch_index,
shard_count=self.global_batch_size,
)
data, template = self._read_model_parallel_dataset(
train_dataset, read_shard
)
else:
data = self._read_shuffled_shard(
train_dataset,
time_series_length,
shard_index=jax.process_index(),
shard_count=jax.process_count(),
min_buffer_blocks=local_batch_size,
)
template = train_dataset
data = data.repeat()
data = data.batch(local_batch_size, drop_remainder=True)
data = data.prefetch(tf.data.AUTOTUNE)
train_iter = self._to_dataset_iter(data, template)
data_attrs = datasets.attrs_from_dataset(train_dataset, time_series_length)
return train_iter, data_attrs
def build_train_and_eval_iterators(
self,
schedule_idx: int,
start_step: int,
large_eval: bool,
) -> TrainEvalIteratorTuple:
"""Build new iterators for training at schedule_idx.
Args:
schedule_idx: Index into the rollout schedule.
start_step: Step at which this training run started at. This does not
change unless the Borg job dies and restarts.
large_eval: Whether this evaluation should be done over a larger set of
data.
Returns:
TrainEvalIteratorTuple: Tuple consisting of
get_train_data. Iterator providing next set of training data.
train_step_fn. train_utils.TrainStepFunction to update weights.
evaluate_fn. Callable to evalate metrics and write results.
ckpt_kwargs. dict[str, Any] of kwargs to add to the checkpoint.
"""
num_train_time_steps = self.config.train_schedule_time_steps[schedule_idx]
trajectory_length = self._trajectory_lengths[schedule_idx]
train_traj_spec = metrics_util.TrajectorySpec(
trajectory_length,
self._max_trajectory_length,
self.train_inner_steps,
coords=self.model_specs.coords,
data_coords=self.data_coords,
)
# These only change on the first and last rollout, but re-make them anyways.
get_eval_data, eval_attrs = self.build_eval_inputs(
self.config.eval_dataset_time_slice,
large_eval,
)
get_eval_on_train, _ = self.build_eval_inputs(
self.config.train_dataset_time_slice,
large_eval,
)
evaluate_fn = functools.partial(
self.evaluate,
eval_batch_fn=self.get_eval_batch_fn(train_traj_spec),
get_eval_data=get_eval_data,
get_train_data=get_eval_on_train,
large_eval=large_eval,
)
get_train_data, train_attrs = self._build_train_inputs(trajectory_length)
ckpt_kwargs = {
'train_attrs': train_attrs,
'eval_attrs': eval_attrs,
}
train_step_fn = self.get_train_step_fn(
num_train_time_steps, train_traj_spec
)
if (
self.config.profile_with_xprof
and schedule_idx == 0
and experiment_utils.is_coordinator()
and start_step == 0
):
train_step_fn = profiling_util.Traced(
train_step_fn, # only the initial train_step is profiled.
trace_name='train step',
skip_steps=2, # avoid JIT compilation
num_trace_steps=3,
enable_python_tracer=True,
host_trace_level=3,
)
return get_train_data(), train_step_fn, evaluate_fn, ckpt_kwargs
def _get_eval_dataset(self) -> xarray.Dataset:
return xarray_utils.ds_with_sim_time(
self.eval_ds, self.physics_specs, self.reference_datetime
)
def build_eval_inputs(
self,
dataset_time_slice: tuple[str, str] | None,
large_eval: bool,
) -> tuple[Callable[[], Any], Any]:
"""Returns an iterable over the data and data attrs for evaluation."""
eval_dataset = self._get_eval_dataset()
num_eval_batches = self.num_eval_batches(large_eval)
eval_batch_size_per_device = self.eval_batch_size_per_device(large_eval)
time_series_length = (
self._eval_trajectory_length + self.config.num_init_frames - 1
)
local_batch_size = eval_batch_size_per_device * jax.local_device_count()
if isinstance(eval_dataset.indexes['time'], pd.DatetimeIndex):
# For real world training data from ERA5, carefully sample starting
# times to ensure they are equally spaced across the year.
assert 'sample' not in eval_dataset.dims
logging.info('Using eval data loader for build_eval_inputs')
sample_count = self.global_eval_batch_size(large_eval) * num_eval_batches
if dataset_time_slice:
time_source = eval_dataset.time.loc[slice(*dataset_time_slice)]
else:
time_source = eval_dataset
first_start = time_source.indexes['time'][0]
last_start = time_source.indexes['time'][-1]
starts = _get_datetime_forecast_starts(
sample_count, first_start, last_start
)
logging.info(f'determined evaluation data for {sample_count=}: {starts=}')
offsets = eval_dataset.indexes['time'].get_indexer(starts)
sampler = reader.WindowerAtOffsets(
window_size=time_series_length, window_offsets=offsets
)
if self.model_parallel_training:
def read_shard(shard_dataset, batch_index):
selector = reader.ShardSelector(batch_index, len(starts))
return reader.read_timeseries(shard_dataset, sampler, selector)
data, template = self._read_model_parallel_dataset(
eval_dataset, read_shard
)
else:
selector = reader.ShardSelector(
jax.process_index(), jax.process_count()
)
data = reader.read_timeseries(eval_dataset, sampler, selector)
template = eval_dataset
data = data.batch(local_batch_size, drop_remainder=True)
data = data.cache()
else:
# For synthetic datasets (e.g., from Held-Suarez), use the same shuffling
# we use for reading training data.
assert not self.model_parallel_training
if dataset_time_slice:
eval_dataset = eval_dataset.sel(time=slice(*dataset_time_slice))
data = self._read_shuffled_shard(
eval_dataset,
time_series_length,
shard_index=jax.process_index(),
shard_count=jax.process_count(),
min_buffer_blocks=local_batch_size * num_eval_batches,
)
data = data.batch(local_batch_size, drop_remainder=True)
data = data.take(num_eval_batches)
template = eval_dataset
logging.info(f'created eval data: {data}')
eval_iter = self._to_dataset_iter(data, template)
data_attrs = datasets.attrs_from_dataset(eval_dataset, time_series_length)
return eval_iter, data_attrs
#
# Training and evaluation methods.
#
def _make_initial_experiment_state(
self,
rng: typing.PRNGKeyArray,
init_example,
init_forcing_data: typing.ForcingData,
init_params: Optional[typing.Params] = None,
) -> ExperimentState:
"""Makes initial parameters (via hk.Module.init)."""
if self.eval_inner_steps != self.train_inner_steps:
raise ValueError(
'KroneckerCorrelatedL2LossModule stddev will be ill defined since '
f'{self.eval_inner_steps=} != {self.train_inner_steps=}'
)
trajectory_length = list(init_example.values())[0].shape[0]
@jax.jit
def init(rng, init_example, init_forcing_data):
outer_steps = (trajectory_length - self.config.num_init_frames) + 1
# We need an "ensemble" dimension for stochastic losses, but parameters
# are fully replicated across the ensemble.
if init_params is None:
init_fn = jax.vmap(
self._make_unbatched_trajectory_fn(outer_steps).init,
in_axes=None,
out_axes=0,
spmd_axis_name='ensemble',
axis_size=1,
)
unsqueezd_params = init_fn(rng, init_example, init_forcing_data)
params = tree_map(lambda x: jnp.squeeze(x, axis=0), unsqueezd_params)
else:
params = init_params
opt_state = self.optimizer.init(params)
_, ema_state = self._ema_init(None, params)
experiment_state = ExperimentState(opt_state, params, ema_state)
experiment_state = train_utils.ensure_replicated(
experiment_state, mesh=self.spmd_mesh
)
return experiment_state
return init(rng, init_example, init_forcing_data)
def _make_unbatched_trajectory_fn(self, outer_steps: int):
"""Haiku transformation of func giving (prediction, target) trajectories.
Args:
outer_steps: Number of outer steps the trajectory should take.
Returns:
hk transformed object. The .apply member maps
(params, rng, target, forcing_data) --> (prediction, target)
"""
if self.train_inner_steps != self.eval_inner_steps:
# We share a trajectory for train/eval...so the spacing better be equal.
raise ValueError(f'{self.train_inner_steps=} != {self.eval_inner_steps=}')
@hk.transform
def unbatched_trajectory_fn(target, forcing_data):
"""Compute Fwd(target[0]) on one single batch/device."""
# Shapes(target) ~ (n_t, n_z, n_m, n_l)
model = self.whirl_model.model_cls()
_, predicted_trajectory = self._trajectory_fwd(
x=target,
forcing_data=forcing_data,
model=model,
outer_steps=outer_steps,
inner_steps=self.train_inner_steps,
)
prediction, target = (
model_utils.compute_prediction_and_target_representations(
predicted_trajectory, target, forcing_data, model
)
)
return prediction, target
return unbatched_trajectory_fn
def _make_batch_trajectory_fn(
self,
outer_steps: int,
) -> TrajectoryFn:
"""Target, prediction representations with shape (batch, ensemble, ...)."""
ensembled_fn = jax.vmap(
# (params, rng, target, forcing_data) --> (prediction, target)
self._make_unbatched_trajectory_fn(outer_steps).apply,
in_axes=(None, 0, None, None),
spmd_axis_name='ensemble',
)
batch_ensembled_fn = jax.vmap(
# (params, rng, target, forcing_data) --> (prediction, target)
# Input shapes are:
# params: (...)
# rng: (batch, ensemble, ...)
# target: (batch, time, ...)
# forcing_data: (batch, time, ...)
ensembled_fn,
in_axes=(None, 0, 0, 0),
spmd_axis_name='batch',
)
return batch_ensembled_fn
def get_train_step_fn(
self,
num_train_time_steps: int,
traj_spec: metrics_util.TrajectorySpec,
) -> train_utils.TrainStepFunction:
"""Makes a function to update weights via gradient descent.
This function makes use of on-device batching. Multiple devices are combined
via an all reduce step whereby the average (across devices) gradient is
applied to each (on device) params.
Args:
num_train_time_steps: Number of time steps for the trajectory in this
training step.
traj_spec: Specification of training trajectory.
Returns:
all_reduced_train_step: Function to exectute one training step.
Params are injected into self._trajectory_fwd and Loss (if Loss requires
Haiku params).
"""
batch_trajectory_fn = self._make_batch_trajectory_fn(
# (params, rng, target, forcing_data) --> [prediction, target]
outer_steps=num_train_time_steps // self.train_inner_steps
+ 1,
)
loss_fn = get_loss_obj(traj_spec).evaluate
ensembled_loss_fn = jax.vmap(
loss_fn,
axis_name='ensemble',
spmd_axis_name='ensemble',
)
batch_ensembled_loss_fn = jax.vmap(
ensembled_loss_fn,
axis_name='batch',
spmd_axis_name='batch',
)
def batched_parameter_loss_fn(params, rng, target, forcing_data):
"""Mean (over on-device batch members) of loss w.r.t parameters."""
# Input shapes are:
# params: (...)
# rng: (batch, ensemble, ...)
# target: (batch, time, ...)
# forcing_data: (batch, time, ...)
prediction, target = batch_trajectory_fn(
# The `target` and prediction returned are TrajectoryRepresentations.
# So don't just re-use the arg `target`.
params,
rng,
target,
forcing_data,
)
# dimensions (batch, ensemble)
per_example_loss = batch_ensembled_loss_fn(prediction, target)
# Average over ensemble and batch dimensions (technically, we don't have
# to average over ensemble with our current stochastic losses, but these
# values are already identical and this is cleaner than using array
# indexing)
overall_loss = jnp.mean(per_example_loss, axis=(0, 1))
assert overall_loss.ndim == 0
return overall_loss
# We would use donate_argnums here to update experiment_state in-place, but
# that would mean we could not save the checkpoint in a separable thread.
# Fortunately experiment_state is usually not too big (~100 MB).
@train_utils.jit_once
def train_step(experiment_state, rng, target_trajectory, forcing_data):
opt_state, params, ema_state = experiment_state
rng = train_utils.ensure_sharded_rng_key(rng, mesh=self.spmd_mesh)
loss, grad = jax.value_and_grad(batched_parameter_loss_fn)(
params, rng, target_trajectory, forcing_data
)
updates, opt_state = self.optimizer.update(grad, opt_state, params)
params = optax.apply_updates(params, updates)
_, ema_state = self._ema_update(params, ema_state)
experiment_state = ExperimentState(opt_state, params, ema_state)
experiment_state = train_utils.ensure_replicated(
experiment_state, mesh=self.spmd_mesh
)
return experiment_state, loss
return train_step
def get_eval_batch_fn(
self,
train_traj_spec: metrics_util.TrajectorySpec,
) -> train_utils.EvalStepFunction:
"""Makes a function that performs a single evaluation pass.
Args:
train_traj_spec: TrajectorySpec for training. Used to add the "loss"
evaluation metrics.
Returns:
Function mapping (params, rng, target, forcing_data) to dictionary of
scalar metric values. Parameters are injected into self._trajectory_fwd
and Loss (if Loss requires Haiku params).
"""
eval_traj_spec = metrics_util.TrajectorySpec(
self._eval_trajectory_length,
self._max_trajectory_length,
steps_per_save=self.eval_inner_steps,
coords=self.model_specs.coords,
data_coords=self.data_coords,
)
eval_time_steps = [
t // self.eval_inner_steps for t in self.config.eval_time_steps
]
if any(t % self.eval_inner_steps for t in self.config.eval_time_steps):
raise ValueError(
f'cannot evaluate {self.config.eval_time_steps=} with '
f'{self.eval_inner_steps=}'
)
batch_trajectory_fn = self._make_batch_trajectory_fn(
# (params, rng, target, forcing_data) --> [prediction, target]
outer_steps=max(
self._eval_trajectory_length,
train_traj_spec.trajectory_length,
),
)
def unbatched_eval_fn(
prediction: TrajectoryRepresentations, target: TrajectoryRepresentations
):
"""Evaluate(target, Fwd(target[0])) on one single batch/device."""
metrics_dict = get_metrics_dict(
eval_traj_spec,
eval_time_steps,
get_loss_obj(train_traj_spec),
is_ensemble_data=bool(self.config.ensemble_size),
)
return train_utils.flatten_dict({
k: metric.evaluate(prediction, target)
for k, metric in metrics_dict.items()
})
ensembled_fn = jax.vmap(
unbatched_eval_fn, axis_name='ensemble', spmd_axis_name='ensemble'
)
batch_ensembled_fn = jax.vmap(
ensembled_fn,
axis_name='batch',
spmd_axis_name='batch',
)
@train_utils.jit_once
def batch_mean_eval_fn(params, rng, target, forcing_data):
"""Computes mean (over batch members) of evaluation."""
# Input shapes for this function are:
# params: (...)
# rng: (batch, ensemble, ...)
# target: (batch, time, ...)
# forcing_data: (batch, time, ...)
rng = train_utils.ensure_sharded_rng_key(rng, mesh=self.spmd_mesh)
prediction, target = batch_trajectory_fn(
# The `target` and prediction returned are TrajectoryRepresentations.
# So don't just re-use the arg `target`.
params,
rng,
target,
forcing_data,
)
batch_eval_values = batch_ensembled_fn(prediction, target)
return tree_map(jnp.mean, batch_eval_values)
return batch_mean_eval_fn
def run_training(self):
"""See base class."""
(
start_step,
times_restarted_on_nan,
step_auto_restart_began_at,
experiment_state,
) = self.initialize_experiment(
initial_checkpoint_path=self.config.initial_checkpoint_path
)
if start_step >= self.config.num_training_steps:
logging.warning(
f'Attempting to start training at {start_step=} >='
f' {self.config.num_training_steps=}. Will simply return'
)
return
def logging_callback(step, loss, times_restarted_on_nan):
loss = float(jax.device_get(loss))
if step % max(self.steps_between_evals(False) // 100, 1) == 0:
logging.info(f'{step=}, {loss=}')
if (
self.config.error_with_nan_loss
and times_restarted_on_nan > self.config.max_nan_restarts
):
raise RuntimeError(
f'NaN loss detected at {step=}, after too many restarts since'
f' {times_restarted_on_nan=} >'
f' {self.config.max_nan_restarts=}. Aborting.'
)
# monitor loss using a separate thread, so it doesn't block execution
logging_stream = streaming.SingleThreadExecutor(logging_callback)
logging.info('starting training from step=%s', start_step)
train_step_timer = timing_util.Timer()
rng_stream = train_utils.BatchedPRNGSequence(
jax.random.PRNGKey(self.config.init_rng_seed),
batch_shape=(self.global_batch_size, self.config.ensemble_size or 1),
)
loss = 1.0 # setting to a non-nan value when starting an experiment.
schedule_idx = None
ckpt_kwargs = {}
step = start_step
while step < self.config.num_training_steps:
old_schedule_idx = schedule_idx
schedule_idx = np.sum( # compute which leg of the schedule we are at.
step > np.asarray(self.config.train_schedule_boundaries)
)
large_eval = (
schedule_idx == len(self.config.train_schedule_time_steps) - 1
)
if schedule_idx != old_schedule_idx:
(
train_iter,
train_step_fn,
evaluate_fn,
ckpt_kwargs,
) = self.build_train_and_eval_iterators(
schedule_idx=schedule_idx,
start_step=start_step,
large_eval=large_eval,
)
if (
np.isnan(loss)
# No sense re-initializing if we've restarted a bunch already. Also,
# note that if error_with_nan_loss=True, we should raise and not have
# worry about the times_restarted_on_nan < max_nan_restarts here.
and times_restarted_on_nan <= self.config.max_nan_restarts
):
# See also logging_callback, which may raise RuntimeError for NaN loss.
logging.warning(
f'NaN loss encountered at {step=}. Re-initializing and incrementing'
f' times_restarted_on_nan to {times_restarted_on_nan + 1}'
)
times_restarted_on_nan += 1
step, _, _, experiment_state = self.initialize_experiment(
target_step=step
- times_restarted_on_nan * self.config.restart_lookback_steps
)
step_auto_restart_began_at = step_auto_restart_began_at or step
# checkpoint
if step % self.steps_between_evals(large_eval) == 0:
self.save_checkpoint(
step,
experiment_state,
checkpoint_buffer_size=self.config.checkpoint_buffer_size,
times_restarted_on_nan=times_restarted_on_nan,
step_auto_restart_began_at=step_auto_restart_began_at,
**ckpt_kwargs,
)
elif step % self.config.steps_between_checkpoints == 0:
max_lookback_step = (
step
- self.config.max_nan_restarts * self.config.restart_lookback_steps
)
if (
# If there is no chance of a restart sequence overlapping with
# previously used checkpoints...
times_restarted_on_nan
and max_lookback_step > step_auto_restart_began_at
):
logging.info(
f'Significant progress made since {step_auto_restart_began_at=}.'
f' In particular, {step=} Therefore set times_restarted_on_nan'
' to 0'
)
times_restarted_on_nan = 0
step_auto_restart_began_at = None
self.save_checkpoint(
step,
experiment_state,
update_latest_only=True,
checkpoint_buffer_size=self.config.checkpoint_buffer_size,
times_restarted_on_nan=times_restarted_on_nan,
step_auto_restart_began_at=step_auto_restart_began_at,
**ckpt_kwargs,
)
# evaluate
if (step + 1) % self.steps_between_evals(large_eval) == 0:
if step > start_step:
with train_step_timer:
# train_step is non-blocking, so we need to block on the output
# of the previous training step to reliably time it.
experiment_state = jax.block_until_ready(experiment_state)
eval_interval = self.steps_between_evals(large_eval)
training_time = train_step_timer.total
logging.info(
f'training for {eval_interval} steps took '
f'{training_time:.1f} seconds'
)
self.record_scalar(
'train',
tag='seconds_per_train_step',
step=step,
value=training_time / eval_interval,
)
train_step_timer = timing_util.Timer() # reset
if isinstance(train_step_fn, profiling_util.Traced):
memory_usage = train_step_fn.tracer.memory_usage # pytype: disable=attribute-error
if memory_usage is not None:
self.record_scalar(
'train',
tag='peak_memory_usage_mib',
step=step,
value=memory_usage,
)
with timing_util.Timer() as eval_timer:
evaluate_fn(step, experiment_state, seed=step)
self.record_scalar(
'train',
tag='seconds_per_evaluation',
step=step,
value=eval_timer.average,
)
logging.info('evaluation pass took %.1f seconds', eval_timer.average)
self.flush_writers() # flush all writers for this training step.
# train
with train_step_timer:
# go/xprof-instrument-jax
with jax.profiler.StepTraceAnnotation('train', step_num=step):
batch, forcing_data = self.to_global_array(
next(train_iter), self.global_batch_size
)
# This is necessary else ValueError.
# See http://sponge2/960c64a7-703f-4a19-8572-2c97dd9c01f3
with self.spmd_mesh:
experiment_state, loss = train_step_fn(
experiment_state, next(rng_stream), batch, forcing_data
)
# If we don't device_get (or similar), asynchronous execution
# resultsin this timed block taking almost no time. device_get does
# not result in longer runs, since each loop must eventually compute
# the loss, one way or another.
loss = jax.device_get(loss)
logging_stream.wait()
logging_stream.put(step, loss, times_restarted_on_nan)
step += 1
# End of while step < self.config.num_training_steps:
evaluate_fn(self.config.num_training_steps, experiment_state)
self.finalize_training(
self.config.num_training_steps,
experiment_state,
times_restarted_on_nan=times_restarted_on_nan,
step_auto_restart_began_at=step_auto_restart_began_at,
**ckpt_kwargs,
)
def make_dummy_inputs(self) -> tuple[Any, Any]:
train_dataset = xarray_utils.ds_with_sim_time(
self.train_ds, self.physics_specs, self.reference_datetime
)
dummy_ds = (
train_dataset.drop_vars('time')
.head(time=self.config.num_init_frames)
.pipe(xarray.zeros_like) # replace data with zeros
.pipe(datasets.drop_static_vars)
.transpose('time', ...)
)
return self.from_xarray_fn(dummy_ds)
def initialize_experiment(
self,
initial_checkpoint_path: Optional[str] = None,
target_step: Optional[int] = None,
) -> tuple[int, int, int | None, ExperimentState]:
"""Returns training step and experiment state from checkpoint or init."""
if target_step:
ckpt = self.load_buffered_checkpoint(target_step=target_step)
if ckpt is None:
logging.info(
'No acceptable buffered checkpoint found for {target_step=}'
)
else:
logging.info(
f'Using buffered checkpoint, which has step={ckpt.step}. Ideally '
f'would have used {target_step=}'
)
else:
ckpt = self.load_latest_checkpoint()
if ckpt is None:
logging.info('No latest checkpoint found')
else:
logging.info(f'Using latest checkpoint, which has step={ckpt.step}')
init_params = None
if ckpt is None and initial_checkpoint_path is not None:
ckpt = checkpoint.load_checkpoint(initial_checkpoint_path)
if self.config.reset_initial_optimizer_state:
init_params = ckpt.eval_params
ckpt = None # if resetting optimizer, carry over only init_params.
if ckpt is not None:
start_step = ckpt.step
logging.info(f'resuming from checkpoint at step={start_step}')
times_restarted_on_nan = getattr(ckpt, 'times_restarted_on_nan', 0)
step_auto_restart_began_at = getattr(
ckpt, 'step_auto_restart_began_at', None
)
experiment_state = ExperimentState(
ckpt.opt_state, ckpt.train_params, ckpt.ema_state
)
else:
logging.info('starting training with new weights')
start_step = 0
times_restarted_on_nan = 0
step_auto_restart_began_at = None
rng = jax.random.PRNGKey(self.config.init_rng_seed)
init_example, init_forcing_data = self.make_dummy_inputs()
experiment_state = self._make_initial_experiment_state(
rng, init_example, init_forcing_data, init_params=init_params
)
return (
start_step,
times_restarted_on_nan,
step_auto_restart_began_at,
experiment_state,
)
def _checkpoint_state(
self,
step: int,
experiment_state: ExperimentState,
times_restarted_on_nan: int,
step_auto_restart_began_at: int,
train_attrs: dict[str, Any],
eval_attrs: dict[str, Any],
) -> checkpoint.CheckpointState:
"""Returns a checkpoint state for a given experiment_state."""
opt_state, params, ema_state = experiment_state
ema_params, _ = self._ema_update(params, ema_state)
ckpt_state = checkpoint.CheckpointState(
train_params=params,
eval_params=ema_params,
opt_state=opt_state,
ema_state=ema_state,
step=step,
model_time_step=self._model_dt,
model_config_str=self._model_gin_config,
train_dataset_path=self.config.train_dataset_path,
eval_dataset_path=self.config.eval_dataset_path,
times_restarted_on_nan=times_restarted_on_nan,
step_auto_restart_began_at=step_auto_restart_began_at,
train_attrs=train_attrs,
eval_attrs=eval_attrs,
)
return ckpt_state
def evaluate(
self,
step,
experiment_state,
eval_batch_fn,
get_eval_data,
get_train_data,
large_eval: bool,
seed=0,
):
"""Evaluates the model on train and eval data and writes summaries.
Args:
step: global training step.
experiment_state: tuple of replicated step, optimizer state and EMA
(exponentially moving average) state for model parameters.
eval_batch_fn: function that, given parameters; rng; batch of data,
computes evaluation metric of interest on the given samples.
get_eval_data: callable that returns an iterator over evaluation data that
is used for produce summaries on unseen evaluation data.
get_train_data: callable that returns an iterator over training data that
is used for produce summaries on training data.
large_eval: Whether this evaluation is on the larger size eval data.
seed: seed for the random number generator to be used for evaluation.
"""
num_eval_batches = self.num_eval_batches(large_eval)
if num_eval_batches == 0:
logging.warning(f'skipping evaluation: {num_eval_batches=}')
return
_, params, ema_state = experiment_state
ema_params, _ = self._ema_update(params, ema_state)
global_batch_size = self.global_eval_batch_size(large_eval)
rng_stream = train_utils.BatchedPRNGSequence(
jax.random.PRNGKey(seed),
batch_shape=(global_batch_size, self.config.ensemble_size or 1),
)
to_global_array = functools.partial(
self.to_global_array, global_batch_size=global_batch_size
)
# In theory, the mesh context manager should not be necessary because we use
# jit with sharded arrays (rather than xmap or pjit), but it seems to be
# required to avoid triggering bugs in JAX.
with self.spmd_mesh:
logging.info('evaluating on train dataset')
metrics_ = train_utils.streaming_mean(
rng_stream,
map(to_global_array, get_train_data()),
functools.partial(eval_batch_fn, params),
)
for tag, value in metrics_.items():
self.record_scalar('train', tag=tag, value=value, step=step)
logging.info('evaluating on test dataset')
metrics_ = train_utils.streaming_mean(
rng_stream,
map(to_global_array, get_eval_data()),
functools.partial(eval_batch_fn, params),
)
for tag, value in metrics_.items():
self.record_scalar('eval', tag=tag, value=value, step=step)
logging.info('evaluating EMA model on test dataset')
metrics_ = train_utils.streaming_mean(
rng_stream,
map(to_global_array, get_eval_data()),
functools.partial(eval_batch_fn, ema_params),
)
for tag, value in metrics_.items():
self.record_scalar('eval_ema', tag=tag, value=value, step=step)
if __name__ == '__main__':
app.run(functools.partial(run_training.main, Experiment))
|