Temporal Interpolation¶
Temporal Interpolation inference using InterpModAFNO model.
This example demonstrates how to use the InterpModAFNO model to interpolate forecasts from a base model to a finer time resolution. Many of the existing prognostic models have a step size of 6 hours which may prove insufficient for some applications. InterpModAFNO provides a AI driven method for getting hourly resolution given 6 hour predictions.
In this example you will learn:
- How to load a base prognostic model
- How to load the InterpModAFNO model
- How to run the interpolation model
- How to visualize the results
Set Up¶
First, import the necessary modules and set up our environment and load the models. We will use SFNO as the base prognostic model and the InterpModAFNO model to interpolate its output to a finer time resolution. The prognostic model must predict the needed variables in the interpolation model.
This example needs the following:
- Interpolation Model:
earth2studio.models.px.InterpModAFNO. - Prognostic Base Model: Use SFNO model
earth2studio.models.px.SFNO. - Datasource: Pull data from the GFS data api
earth2studio.data.GFS.
import os
import matplotlib.pyplot as plt
from earth2studio.data import GFS
from earth2studio.io import ZarrBackend
from earth2studio.models.px import SFNO, InterpModAFNO
# Create output directory
os.makedirs("outputs", exist_ok=True)
sfno_package = SFNO.load_default_package()
px_model = SFNO.load_model(sfno_package)
# Load the interpolation model
interp_package = InterpModAFNO.load_default_package()
interp_model = InterpModAFNO.load_model(interp_package, px_model=px_model)
# Create the data source
data = GFS()
# Create the IO handler
io = ZarrBackend()
Console output413 lines
/__w/earth2studio/earth2studio/.venv/lib/python3.13/site-packages/torch/cuda/__init__.py:64: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you.
import pynvml # type: ignore[import]
WARNING[XFORMERS]: xFormers can't load C++/CUDA extensions. xFormers was built for:
PyTorch 2.10.0+cu128 with CUDA 1208 (you have 2.13.0+cu130)
Python 3.10.19 (you have 3.13.13)
Please reinstall xformers (see https://github.com/facebookresearch/xformers#installing-xformers)
Memory-efficient attention, SwiGLU, sparse and more won't be available.
Set XFORMERS_MORE_DETAILS=1 for more details
CuPy distance computation test failed with error: cuVS >= 24.12 or pylibraft < 24.12 should be installed to use this feature
Downloading config.json: 0%| | 0.00/17.5k [00:00<?, ?B/s]
Downloading config.json: 100%|โโโโโโโโโโ| 17.5k/17.5k [00:00<00:00, 6.47MB/s]
Downloading global_means.npy: 0%| | 0.00/728 [00:00<?, ?B/s]
Downloading global_means.npy: 100%|โโโโโโโโโโ| 728/728 [00:00<00:00, 385kB/s]
Downloading global_stds.npy: 0%| | 0.00/728 [00:00<?, ?B/s]
Downloading global_stds.npy: 100%|โโโโโโโโโโ| 728/728 [00:00<00:00, 249kB/s]
Downloading orography.nc: 0%| | 0.00/2.50M [00:00<?, ?B/s]
Downloading orography.nc: 100%|โโโโโโโโโโ| 2.50M/2.50M [00:00<00:00, 101MB/s]
Downloading land_mask.nc: 0%| | 0.00/748k [00:00<?, ?B/s]
Downloading land_mask.nc: 100%|โโโโโโโโโโ| 748k/748k [00:00<00:00, 82.1MB/s]
Downloading best_ckpt_mp0.tar: 0%| | 0.00/6.40G [00:00<?, ?B/s]
Downloading best_ckpt_mp0.tar: 0%| | 17.6M/6.40G [00:00<00:37, 184MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 37.3M/6.40G [00:00<00:34, 196MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 57.5M/6.40G [00:00<00:33, 203MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 76.9M/6.40G [00:00<00:35, 192MB/s]
Downloading best_ckpt_mp0.tar: 1%|โ | 95.6M/6.40G [00:00<00:34, 194MB/s]
Downloading best_ckpt_mp0.tar: 2%|โ | 116M/6.40G [00:00<00:34, 198MB/s]
Downloading best_ckpt_mp0.tar: 2%|โ | 134M/6.40G [00:00<00:35, 188MB/s]
Downloading best_ckpt_mp0.tar: 2%|โ | 153M/6.40G [00:00<00:36, 181MB/s]
Downloading best_ckpt_mp0.tar: 3%|โ | 171M/6.40G [00:00<00:35, 186MB/s]
Downloading best_ckpt_mp0.tar: 3%|โ | 194M/6.40G [00:01<00:33, 201MB/s]
Downloading best_ckpt_mp0.tar: 3%|โ | 216M/6.40G [00:01<00:31, 210MB/s]
Downloading best_ckpt_mp0.tar: 4%|โ | 236M/6.40G [00:01<00:33, 197MB/s]
Downloading best_ckpt_mp0.tar: 4%|โ | 257M/6.40G [00:01<00:32, 202MB/s]
Downloading best_ckpt_mp0.tar: 4%|โ | 276M/6.40G [00:01<00:33, 196MB/s]
Downloading best_ckpt_mp0.tar: 5%|โ | 295M/6.40G [00:01<00:33, 197MB/s]
Downloading best_ckpt_mp0.tar: 5%|โ | 314M/6.40G [00:01<00:33, 195MB/s]
Downloading best_ckpt_mp0.tar: 5%|โ | 334M/6.40G [00:01<00:32, 199MB/s]
Downloading best_ckpt_mp0.tar: 5%|โ | 354M/6.40G [00:01<00:32, 200MB/s]
Downloading best_ckpt_mp0.tar: 6%|โ | 373M/6.40G [00:02<00:34, 189MB/s]
Downloading best_ckpt_mp0.tar: 6%|โ | 391M/6.40G [00:02<00:35, 180MB/s]
Downloading best_ckpt_mp0.tar: 6%|โ | 410M/6.40G [00:02<00:34, 185MB/s]
Downloading best_ckpt_mp0.tar: 7%|โ | 428M/6.40G [00:02<00:35, 180MB/s]
Downloading best_ckpt_mp0.tar: 7%|โ | 447M/6.40G [00:02<00:34, 185MB/s]
Downloading best_ckpt_mp0.tar: 7%|โ | 467M/6.40G [00:02<00:33, 190MB/s]
Downloading best_ckpt_mp0.tar: 7%|โ | 486M/6.40G [00:02<00:33, 192MB/s]
Downloading best_ckpt_mp0.tar: 8%|โ | 505M/6.40G [00:02<00:32, 197MB/s]
Downloading best_ckpt_mp0.tar: 8%|โ | 524M/6.40G [00:02<00:34, 183MB/s]
Downloading best_ckpt_mp0.tar: 8%|โ | 542M/6.40G [00:02<00:36, 173MB/s]
Downloading best_ckpt_mp0.tar: 9%|โ | 559M/6.40G [00:03<00:52, 119MB/s]
Downloading best_ckpt_mp0.tar: 9%|โ | 577M/6.40G [00:03<00:46, 134MB/s]
Downloading best_ckpt_mp0.tar: 9%|โ | 598M/6.40G [00:03<00:40, 155MB/s]
Downloading best_ckpt_mp0.tar: 9%|โ | 615M/6.40G [00:03<00:39, 159MB/s]
Downloading best_ckpt_mp0.tar: 10%|โ | 638M/6.40G [00:03<00:34, 180MB/s]
Downloading best_ckpt_mp0.tar: 10%|โ | 658M/6.40G [00:03<00:32, 189MB/s]
Downloading best_ckpt_mp0.tar: 10%|โ | 677M/6.40G [00:03<00:33, 181MB/s]
Downloading best_ckpt_mp0.tar: 11%|โ | 696M/6.40G [00:03<00:32, 187MB/s]
Downloading best_ckpt_mp0.tar: 11%|โ | 715M/6.40G [00:04<00:33, 181MB/s]
Downloading best_ckpt_mp0.tar: 11%|โ | 736M/6.40G [00:04<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 12%|โโ | 755M/6.40G [00:04<00:34, 177MB/s]
Downloading best_ckpt_mp0.tar: 12%|โโ | 776M/6.40G [00:04<00:31, 190MB/s]
Downloading best_ckpt_mp0.tar: 12%|โโ | 797M/6.40G [00:04<00:30, 196MB/s]
Downloading best_ckpt_mp0.tar: 12%|โโ | 818M/6.40G [00:04<00:29, 203MB/s]
Downloading best_ckpt_mp0.tar: 13%|โโ | 837M/6.40G [00:04<00:29, 201MB/s]
Downloading best_ckpt_mp0.tar: 13%|โโ | 857M/6.40G [00:04<00:30, 199MB/s]
Downloading best_ckpt_mp0.tar: 13%|โโ | 876M/6.40G [00:04<00:29, 200MB/s]
Downloading best_ckpt_mp0.tar: 14%|โโ | 895M/6.40G [00:05<00:29, 201MB/s]
Downloading best_ckpt_mp0.tar: 14%|โโ | 915M/6.40G [00:05<00:29, 202MB/s]
Downloading best_ckpt_mp0.tar: 14%|โโ | 935M/6.40G [00:05<00:30, 192MB/s]
Downloading best_ckpt_mp0.tar: 15%|โโ | 957M/6.40G [00:05<00:28, 204MB/s]
Downloading best_ckpt_mp0.tar: 15%|โโ | 977M/6.40G [00:05<00:28, 207MB/s]
Downloading best_ckpt_mp0.tar: 15%|โโ | 0.98G/6.40G [00:05<00:26, 223MB/s]
Downloading best_ckpt_mp0.tar: 16%|โโ | 1.00G/6.40G [00:05<00:26, 219MB/s]
Downloading best_ckpt_mp0.tar: 16%|โโ | 1.02G/6.40G [00:05<00:25, 225MB/s]
Downloading best_ckpt_mp0.tar: 16%|โโ | 1.04G/6.40G [00:05<00:27, 208MB/s]
Downloading best_ckpt_mp0.tar: 17%|โโ | 1.06G/6.40G [00:05<00:27, 208MB/s]
Downloading best_ckpt_mp0.tar: 17%|โโ | 1.08G/6.40G [00:06<00:28, 204MB/s]
Downloading best_ckpt_mp0.tar: 17%|โโ | 1.11G/6.40G [00:06<00:26, 215MB/s]
Downloading best_ckpt_mp0.tar: 18%|โโ | 1.13G/6.40G [00:06<00:27, 207MB/s]
Downloading best_ckpt_mp0.tar: 18%|โโ | 1.15G/6.40G [00:06<00:27, 202MB/s]
Downloading best_ckpt_mp0.tar: 18%|โโ | 1.17G/6.40G [00:06<00:25, 221MB/s]
Downloading best_ckpt_mp0.tar: 19%|โโ | 1.19G/6.40G [00:06<00:26, 212MB/s]
Downloading best_ckpt_mp0.tar: 19%|โโ | 1.21G/6.40G [00:06<00:26, 213MB/s]
Downloading best_ckpt_mp0.tar: 19%|โโ | 1.23G/6.40G [00:06<00:26, 208MB/s]
Downloading best_ckpt_mp0.tar: 20%|โโ | 1.25G/6.40G [00:06<00:27, 200MB/s]
Downloading best_ckpt_mp0.tar: 20%|โโ | 1.27G/6.40G [00:07<00:25, 212MB/s]
Downloading best_ckpt_mp0.tar: 20%|โโ | 1.29G/6.40G [00:07<00:25, 214MB/s]
Downloading best_ckpt_mp0.tar: 21%|โโ | 1.31G/6.40G [00:07<00:25, 214MB/s]
Downloading best_ckpt_mp0.tar: 21%|โโ | 1.33G/6.40G [00:07<00:25, 214MB/s]
Downloading best_ckpt_mp0.tar: 21%|โโ | 1.36G/6.40G [00:07<00:24, 221MB/s]
Downloading best_ckpt_mp0.tar: 22%|โโโ | 1.38G/6.40G [00:07<00:25, 214MB/s]
Downloading best_ckpt_mp0.tar: 22%|โโโ | 1.40G/6.40G [00:07<00:25, 213MB/s]
Downloading best_ckpt_mp0.tar: 22%|โโโ | 1.42G/6.40G [00:07<00:25, 213MB/s]
Downloading best_ckpt_mp0.tar: 22%|โโโ | 1.44G/6.40G [00:07<00:25, 209MB/s]
Downloading best_ckpt_mp0.tar: 23%|โโโ | 1.46G/6.40G [00:07<00:25, 209MB/s]
Downloading best_ckpt_mp0.tar: 23%|โโโ | 1.48G/6.40G [00:08<00:26, 199MB/s]
Downloading best_ckpt_mp0.tar: 23%|โโโ | 1.50G/6.40G [00:08<00:25, 210MB/s]
Downloading best_ckpt_mp0.tar: 24%|โโโ | 1.52G/6.40G [00:08<00:25, 209MB/s]
Downloading best_ckpt_mp0.tar: 24%|โโโ | 1.54G/6.40G [00:08<00:24, 217MB/s]
Downloading best_ckpt_mp0.tar: 24%|โโโ | 1.56G/6.40G [00:08<00:24, 211MB/s]
Downloading best_ckpt_mp0.tar: 25%|โโโ | 1.58G/6.40G [00:08<00:25, 203MB/s]
Downloading best_ckpt_mp0.tar: 25%|โโโ | 1.60G/6.40G [00:08<00:25, 203MB/s]
Downloading best_ckpt_mp0.tar: 25%|โโโ | 1.62G/6.40G [00:08<00:26, 192MB/s]
Downloading best_ckpt_mp0.tar: 26%|โโโ | 1.64G/6.40G [00:08<00:26, 196MB/s]
Downloading best_ckpt_mp0.tar: 26%|โโโ | 1.66G/6.40G [00:09<00:25, 203MB/s]
Downloading best_ckpt_mp0.tar: 26%|โโโ | 1.68G/6.40G [00:09<00:23, 211MB/s]
Downloading best_ckpt_mp0.tar: 27%|โโโ | 1.70G/6.40G [00:09<00:25, 198MB/s]
Downloading best_ckpt_mp0.tar: 27%|โโโ | 1.72G/6.40G [00:09<00:25, 196MB/s]
Downloading best_ckpt_mp0.tar: 27%|โโโ | 1.74G/6.40G [00:09<00:24, 207MB/s]
Downloading best_ckpt_mp0.tar: 28%|โโโ | 1.76G/6.40G [00:09<00:23, 208MB/s]
Downloading best_ckpt_mp0.tar: 28%|โโโ | 1.78G/6.40G [00:09<00:23, 214MB/s]
Downloading best_ckpt_mp0.tar: 28%|โโโ | 1.80G/6.40G [00:09<00:22, 216MB/s]
Downloading best_ckpt_mp0.tar: 28%|โโโ | 1.82G/6.40G [00:09<00:23, 213MB/s]
Downloading best_ckpt_mp0.tar: 29%|โโโ | 1.84G/6.40G [00:10<00:22, 216MB/s]
Downloading best_ckpt_mp0.tar: 29%|โโโ | 1.86G/6.40G [00:10<00:22, 214MB/s]
Downloading best_ckpt_mp0.tar: 29%|โโโ | 1.88G/6.40G [00:10<00:24, 202MB/s]
Downloading best_ckpt_mp0.tar: 30%|โโโ | 1.90G/6.40G [00:10<00:23, 202MB/s]
Downloading best_ckpt_mp0.tar: 30%|โโโ | 1.92G/6.40G [00:10<00:22, 213MB/s]
Downloading best_ckpt_mp0.tar: 30%|โโโ | 1.94G/6.40G [00:10<00:22, 214MB/s]
Downloading best_ckpt_mp0.tar: 31%|โโโ | 1.97G/6.40G [00:10<00:22, 208MB/s]
Downloading best_ckpt_mp0.tar: 31%|โโโ | 1.99G/6.40G [00:10<00:22, 212MB/s]
Downloading best_ckpt_mp0.tar: 31%|โโโโ | 2.01G/6.40G [00:10<00:21, 224MB/s]
Downloading best_ckpt_mp0.tar: 32%|โโโโ | 2.03G/6.40G [00:10<00:21, 219MB/s]
Downloading best_ckpt_mp0.tar: 32%|โโโโ | 2.05G/6.40G [00:11<00:21, 216MB/s]
Downloading best_ckpt_mp0.tar: 32%|โโโโ | 2.07G/6.40G [00:11<00:21, 217MB/s]
Downloading best_ckpt_mp0.tar: 33%|โโโโ | 2.09G/6.40G [00:11<00:21, 211MB/s]
Downloading best_ckpt_mp0.tar: 33%|โโโโ | 2.12G/6.40G [00:11<00:20, 224MB/s]
Downloading best_ckpt_mp0.tar: 33%|โโโโ | 2.14G/6.40G [00:11<00:20, 221MB/s]
Downloading best_ckpt_mp0.tar: 34%|โโโโ | 2.16G/6.40G [00:11<00:20, 225MB/s]
Downloading best_ckpt_mp0.tar: 34%|โโโโ | 2.18G/6.40G [00:11<00:20, 218MB/s]
Downloading best_ckpt_mp0.tar: 34%|โโโโ | 2.20G/6.40G [00:11<00:20, 221MB/s]
Downloading best_ckpt_mp0.tar: 35%|โโโโ | 2.22G/6.40G [00:11<00:23, 195MB/s]
Downloading best_ckpt_mp0.tar: 35%|โโโโ | 2.24G/6.40G [00:12<00:22, 195MB/s]
Downloading best_ckpt_mp0.tar: 35%|โโโโ | 2.26G/6.40G [00:12<00:24, 178MB/s]
Downloading best_ckpt_mp0.tar: 36%|โโโโ | 2.28G/6.40G [00:12<00:24, 182MB/s]
Downloading best_ckpt_mp0.tar: 36%|โโโโ | 2.30G/6.40G [00:12<00:23, 187MB/s]
Downloading best_ckpt_mp0.tar: 36%|โโโโ | 2.32G/6.40G [00:12<00:21, 199MB/s]
Downloading best_ckpt_mp0.tar: 37%|โโโโ | 2.34G/6.40G [00:12<00:21, 207MB/s]
Downloading best_ckpt_mp0.tar: 37%|โโโโ | 2.36G/6.40G [00:12<00:20, 211MB/s]
Downloading best_ckpt_mp0.tar: 37%|โโโโ | 2.38G/6.40G [00:12<00:20, 207MB/s]
Downloading best_ckpt_mp0.tar: 37%|โโโโ | 2.40G/6.40G [00:12<00:21, 201MB/s]
Downloading best_ckpt_mp0.tar: 38%|โโโโ | 2.42G/6.40G [00:13<00:23, 185MB/s]
Downloading best_ckpt_mp0.tar: 38%|โโโโ | 2.44G/6.40G [00:13<00:20, 204MB/s]
Downloading best_ckpt_mp0.tar: 38%|โโโโ | 2.46G/6.40G [00:13<00:20, 207MB/s]
Downloading best_ckpt_mp0.tar: 39%|โโโโ | 2.48G/6.40G [00:13<00:20, 201MB/s]
Downloading best_ckpt_mp0.tar: 39%|โโโโ | 2.50G/6.40G [00:13<00:19, 211MB/s]
Downloading best_ckpt_mp0.tar: 39%|โโโโ | 2.52G/6.40G [00:13<00:19, 213MB/s]
Downloading best_ckpt_mp0.tar: 40%|โโโโ | 2.54G/6.40G [00:13<00:19, 214MB/s]
Downloading best_ckpt_mp0.tar: 40%|โโโโ | 2.56G/6.40G [00:13<00:19, 212MB/s]
Downloading best_ckpt_mp0.tar: 40%|โโโโ | 2.58G/6.40G [00:13<00:20, 204MB/s]
Downloading best_ckpt_mp0.tar: 41%|โโโโ | 2.60G/6.40G [00:13<00:20, 200MB/s]
Downloading best_ckpt_mp0.tar: 41%|โโโโ | 2.62G/6.40G [00:14<00:19, 204MB/s]
Downloading best_ckpt_mp0.tar: 41%|โโโโโ | 2.64G/6.40G [00:14<00:19, 208MB/s]
Downloading best_ckpt_mp0.tar: 42%|โโโโโ | 2.67G/6.40G [00:14<00:18, 216MB/s]
Downloading best_ckpt_mp0.tar: 42%|โโโโโ | 2.69G/6.40G [00:14<00:19, 210MB/s]
Downloading best_ckpt_mp0.tar: 42%|โโโโโ | 2.71G/6.40G [00:14<00:18, 212MB/s]
Downloading best_ckpt_mp0.tar: 43%|โโโโโ | 2.73G/6.40G [00:14<00:18, 217MB/s]
Downloading best_ckpt_mp0.tar: 43%|โโโโโ | 2.75G/6.40G [00:14<00:18, 209MB/s]
Downloading best_ckpt_mp0.tar: 43%|โโโโโ | 2.77G/6.40G [00:14<00:19, 202MB/s]
Downloading best_ckpt_mp0.tar: 44%|โโโโโ | 2.79G/6.40G [00:14<00:18, 209MB/s]
Downloading best_ckpt_mp0.tar: 44%|โโโโโ | 2.81G/6.40G [00:15<00:18, 207MB/s]
Downloading best_ckpt_mp0.tar: 44%|โโโโโ | 2.83G/6.40G [00:15<00:17, 219MB/s]
Downloading best_ckpt_mp0.tar: 45%|โโโโโ | 2.85G/6.40G [00:15<00:17, 222MB/s]
Downloading best_ckpt_mp0.tar: 45%|โโโโโ | 2.87G/6.40G [00:15<00:16, 225MB/s]
Downloading best_ckpt_mp0.tar: 45%|โโโโโ | 2.89G/6.40G [00:15<00:16, 223MB/s]
Downloading best_ckpt_mp0.tar: 46%|โโโโโ | 2.92G/6.40G [00:15<00:16, 230MB/s]
Downloading best_ckpt_mp0.tar: 46%|โโโโโ | 2.94G/6.40G [00:15<00:16, 219MB/s]
Downloading best_ckpt_mp0.tar: 46%|โโโโโ | 2.96G/6.40G [00:15<00:16, 221MB/s]
Downloading best_ckpt_mp0.tar: 47%|โโโโโ | 2.98G/6.40G [00:15<00:16, 219MB/s]
Downloading best_ckpt_mp0.tar: 47%|โโโโโ | 3.00G/6.40G [00:15<00:16, 217MB/s]
Downloading best_ckpt_mp0.tar: 47%|โโโโโ | 3.02G/6.40G [00:16<00:16, 217MB/s]
Downloading best_ckpt_mp0.tar: 48%|โโโโโ | 3.04G/6.40G [00:16<00:17, 206MB/s]
Downloading best_ckpt_mp0.tar: 48%|โโโโโ | 3.06G/6.40G [00:16<00:17, 209MB/s]
Downloading best_ckpt_mp0.tar: 48%|โโโโโ | 3.08G/6.40G [00:16<00:17, 205MB/s]
Downloading best_ckpt_mp0.tar: 48%|โโโโโ | 3.10G/6.40G [00:16<00:16, 209MB/s]
Downloading best_ckpt_mp0.tar: 49%|โโโโโ | 3.12G/6.40G [00:16<00:17, 205MB/s]
Downloading best_ckpt_mp0.tar: 49%|โโโโโ | 3.14G/6.40G [00:16<00:17, 198MB/s]
Downloading best_ckpt_mp0.tar: 49%|โโโโโ | 3.16G/6.40G [00:16<00:17, 198MB/s]
Downloading best_ckpt_mp0.tar: 50%|โโโโโ | 3.18G/6.40G [00:16<00:18, 191MB/s]
Downloading best_ckpt_mp0.tar: 50%|โโโโโ | 3.20G/6.40G [00:17<00:18, 189MB/s]
Downloading best_ckpt_mp0.tar: 50%|โโโโโ | 3.22G/6.40G [00:17<00:17, 193MB/s]
Downloading best_ckpt_mp0.tar: 51%|โโโโโ | 3.23G/6.40G [00:17<00:17, 197MB/s]
Downloading best_ckpt_mp0.tar: 51%|โโโโโ | 3.26G/6.40G [00:17<00:16, 209MB/s]
Downloading best_ckpt_mp0.tar: 51%|โโโโโโ | 3.28G/6.40G [00:17<00:14, 225MB/s]
Downloading best_ckpt_mp0.tar: 52%|โโโโโโ | 3.30G/6.40G [00:17<00:14, 230MB/s]
Downloading best_ckpt_mp0.tar: 52%|โโโโโโ | 3.33G/6.40G [00:17<00:14, 220MB/s]
Downloading best_ckpt_mp0.tar: 52%|โโโโโโ | 3.35G/6.40G [00:17<00:14, 221MB/s]
Downloading best_ckpt_mp0.tar: 53%|โโโโโโ | 3.37G/6.40G [00:17<00:15, 207MB/s]
Downloading best_ckpt_mp0.tar: 53%|โโโโโโ | 3.39G/6.40G [00:18<00:30, 106MB/s]
Downloading best_ckpt_mp0.tar: 53%|โโโโโโ | 3.41G/6.40G [00:18<00:24, 129MB/s]
Downloading best_ckpt_mp0.tar: 54%|โโโโโโ | 3.43G/6.40G [00:18<00:21, 150MB/s]
Downloading best_ckpt_mp0.tar: 54%|โโโโโโ | 3.45G/6.40G [00:18<00:18, 171MB/s]
Downloading best_ckpt_mp0.tar: 54%|โโโโโโ | 3.48G/6.40G [00:18<00:17, 184MB/s]
Downloading best_ckpt_mp0.tar: 55%|โโโโโโ | 3.50G/6.40G [00:18<00:16, 186MB/s]
Downloading best_ckpt_mp0.tar: 55%|โโโโโโ | 3.52G/6.40G [00:18<00:16, 191MB/s]
Downloading best_ckpt_mp0.tar: 55%|โโโโโโ | 3.54G/6.40G [00:19<00:15, 200MB/s]
Downloading best_ckpt_mp0.tar: 56%|โโโโโโ | 3.56G/6.40G [00:19<00:15, 202MB/s]
Downloading best_ckpt_mp0.tar: 56%|โโโโโโ | 3.58G/6.40G [00:19<00:14, 206MB/s]
Downloading best_ckpt_mp0.tar: 56%|โโโโโโ | 3.60G/6.40G [00:19<00:15, 194MB/s]
Downloading best_ckpt_mp0.tar: 57%|โโโโโโ | 3.62G/6.40G [00:19<00:15, 195MB/s]
Downloading best_ckpt_mp0.tar: 57%|โโโโโโ | 3.63G/6.40G [00:19<00:14, 199MB/s]
Downloading best_ckpt_mp0.tar: 57%|โโโโโโ | 3.66G/6.40G [00:19<00:13, 215MB/s]
Downloading best_ckpt_mp0.tar: 57%|โโโโโโ | 3.68G/6.40G [00:19<00:13, 212MB/s]
Downloading best_ckpt_mp0.tar: 58%|โโโโโโ | 3.70G/6.40G [00:19<00:14, 198MB/s]
Downloading best_ckpt_mp0.tar: 58%|โโโโโโ | 3.72G/6.40G [00:19<00:14, 202MB/s]
Downloading best_ckpt_mp0.tar: 58%|โโโโโโ | 3.74G/6.40G [00:20<00:14, 201MB/s]
Downloading best_ckpt_mp0.tar: 59%|โโโโโโ | 3.76G/6.40G [00:20<00:14, 198MB/s]
Downloading best_ckpt_mp0.tar: 59%|โโโโโโ | 3.78G/6.40G [00:20<00:15, 182MB/s]
Downloading best_ckpt_mp0.tar: 59%|โโโโโโ | 3.79G/6.40G [00:20<00:16, 175MB/s]
Downloading best_ckpt_mp0.tar: 60%|โโโโโโ | 3.81G/6.40G [00:20<00:16, 164MB/s]
Downloading best_ckpt_mp0.tar: 60%|โโโโโโ | 3.83G/6.40G [00:20<00:15, 173MB/s]
Downloading best_ckpt_mp0.tar: 60%|โโโโโโ | 3.84G/6.40G [00:20<00:16, 166MB/s]
Downloading best_ckpt_mp0.tar: 60%|โโโโโโ | 3.86G/6.40G [00:20<00:17, 159MB/s]
Downloading best_ckpt_mp0.tar: 61%|โโโโโโ | 3.88G/6.40G [00:20<00:16, 167MB/s]
Downloading best_ckpt_mp0.tar: 61%|โโโโโโ | 3.89G/6.40G [00:21<00:15, 169MB/s]
Downloading best_ckpt_mp0.tar: 61%|โโโโโโ | 3.91G/6.40G [00:21<00:15, 176MB/s]
Downloading best_ckpt_mp0.tar: 61%|โโโโโโโ | 3.93G/6.40G [00:21<00:14, 181MB/s]
Downloading best_ckpt_mp0.tar: 62%|โโโโโโโ | 3.95G/6.40G [00:21<00:13, 190MB/s]
Downloading best_ckpt_mp0.tar: 62%|โโโโโโโ | 3.97G/6.40G [00:21<00:12, 204MB/s]
Downloading best_ckpt_mp0.tar: 62%|โโโโโโโ | 3.99G/6.40G [00:21<00:13, 187MB/s]
Downloading best_ckpt_mp0.tar: 63%|โโโโโโโ | 4.01G/6.40G [00:21<00:12, 205MB/s]
Downloading best_ckpt_mp0.tar: 63%|โโโโโโโ | 4.03G/6.40G [00:21<00:14, 181MB/s]
Downloading best_ckpt_mp0.tar: 63%|โโโโโโโ | 4.05G/6.40G [00:21<00:13, 184MB/s]
Downloading best_ckpt_mp0.tar: 64%|โโโโโโโ | 4.07G/6.40G [00:22<00:12, 193MB/s]
Downloading best_ckpt_mp0.tar: 64%|โโโโโโโ | 4.09G/6.40G [00:22<00:13, 185MB/s]
Downloading best_ckpt_mp0.tar: 64%|โโโโโโโ | 4.11G/6.40G [00:22<00:12, 196MB/s]
Downloading best_ckpt_mp0.tar: 65%|โโโโโโโ | 4.13G/6.40G [00:22<00:14, 168MB/s]
Downloading best_ckpt_mp0.tar: 65%|โโโโโโโ | 4.15G/6.40G [00:22<00:15, 154MB/s]
Downloading best_ckpt_mp0.tar: 65%|โโโโโโโ | 4.16G/6.40G [00:22<00:16, 143MB/s]
Downloading best_ckpt_mp0.tar: 65%|โโโโโโโ | 4.18G/6.40G [00:22<00:16, 143MB/s]
Downloading best_ckpt_mp0.tar: 65%|โโโโโโโ | 4.19G/6.40G [00:22<00:16, 145MB/s]
Downloading best_ckpt_mp0.tar: 66%|โโโโโโโ | 4.20G/6.40G [00:23<00:15, 148MB/s]
Downloading best_ckpt_mp0.tar: 66%|โโโโโโโ | 4.22G/6.40G [00:23<00:15, 150MB/s]
Downloading best_ckpt_mp0.tar: 66%|โโโโโโโ | 4.24G/6.40G [00:23<00:13, 172MB/s]
Downloading best_ckpt_mp0.tar: 67%|โโโโโโโ | 4.26G/6.40G [00:23<00:13, 173MB/s]
Downloading best_ckpt_mp0.tar: 67%|โโโโโโโ | 4.27G/6.40G [00:23<00:12, 178MB/s]
Downloading best_ckpt_mp0.tar: 67%|โโโโโโโ | 4.30G/6.40G [00:23<00:11, 192MB/s]
Downloading best_ckpt_mp0.tar: 67%|โโโโโโโ | 4.31G/6.40G [00:23<00:12, 177MB/s]
Downloading best_ckpt_mp0.tar: 68%|โโโโโโโ | 4.33G/6.40G [00:23<00:12, 172MB/s]
Downloading best_ckpt_mp0.tar: 68%|โโโโโโโ | 4.35G/6.40G [00:23<00:14, 154MB/s]
Downloading best_ckpt_mp0.tar: 68%|โโโโโโโ | 4.37G/6.40G [00:24<00:12, 175MB/s]
Downloading best_ckpt_mp0.tar: 69%|โโโโโโโ | 4.39G/6.40G [00:24<00:12, 179MB/s]
Downloading best_ckpt_mp0.tar: 69%|โโโโโโโ | 4.40G/6.40G [00:24<00:14, 148MB/s]
Downloading best_ckpt_mp0.tar: 69%|โโโโโโโ | 4.42G/6.40G [00:24<00:15, 139MB/s]
Downloading best_ckpt_mp0.tar: 69%|โโโโโโโ | 4.43G/6.40G [00:24<00:14, 142MB/s]
Downloading best_ckpt_mp0.tar: 70%|โโโโโโโ | 4.45G/6.40G [00:24<00:13, 151MB/s]
Downloading best_ckpt_mp0.tar: 70%|โโโโโโโ | 4.47G/6.40G [00:24<00:12, 164MB/s]
Downloading best_ckpt_mp0.tar: 70%|โโโโโโโ | 4.49G/6.40G [00:24<00:11, 174MB/s]
Downloading best_ckpt_mp0.tar: 70%|โโโโโโโ | 4.51G/6.40G [00:24<00:10, 188MB/s]
Downloading best_ckpt_mp0.tar: 71%|โโโโโโโ | 4.53G/6.40G [00:25<00:10, 192MB/s]
Downloading best_ckpt_mp0.tar: 71%|โโโโโโโ | 4.55G/6.40G [00:25<00:10, 198MB/s]
Downloading best_ckpt_mp0.tar: 71%|โโโโโโโโ | 4.56G/6.40G [00:25<00:10, 184MB/s]
Downloading best_ckpt_mp0.tar: 72%|โโโโโโโโ | 4.58G/6.40G [00:25<00:10, 184MB/s]
Downloading best_ckpt_mp0.tar: 72%|โโโโโโโโ | 4.60G/6.40G [00:25<00:10, 183MB/s]
Downloading best_ckpt_mp0.tar: 72%|โโโโโโโโ | 4.62G/6.40G [00:25<00:09, 194MB/s]
Downloading best_ckpt_mp0.tar: 73%|โโโโโโโโ | 4.64G/6.40G [00:25<00:08, 210MB/s]
Downloading best_ckpt_mp0.tar: 73%|โโโโโโโโ | 4.66G/6.40G [00:25<00:09, 197MB/s]
Downloading best_ckpt_mp0.tar: 73%|โโโโโโโโ | 4.68G/6.40G [00:25<00:09, 191MB/s]
Downloading best_ckpt_mp0.tar: 73%|โโโโโโโโ | 4.70G/6.40G [00:26<00:09, 198MB/s]
Downloading best_ckpt_mp0.tar: 74%|โโโโโโโโ | 4.72G/6.40G [00:26<00:09, 188MB/s]
Downloading best_ckpt_mp0.tar: 74%|โโโโโโโโ | 4.74G/6.40G [00:26<00:09, 196MB/s]
Downloading best_ckpt_mp0.tar: 74%|โโโโโโโโ | 4.76G/6.40G [00:26<00:09, 190MB/s]
Downloading best_ckpt_mp0.tar: 75%|โโโโโโโโ | 4.78G/6.40G [00:26<00:10, 168MB/s]
Downloading best_ckpt_mp0.tar: 75%|โโโโโโโโ | 4.79G/6.40G [00:26<00:10, 172MB/s]
Downloading best_ckpt_mp0.tar: 75%|โโโโโโโโ | 4.81G/6.40G [00:26<00:10, 163MB/s]
Downloading best_ckpt_mp0.tar: 75%|โโโโโโโโ | 4.83G/6.40G [00:26<00:09, 176MB/s]
Downloading best_ckpt_mp0.tar: 76%|โโโโโโโโ | 4.85G/6.40G [00:26<00:10, 159MB/s]
Downloading best_ckpt_mp0.tar: 76%|โโโโโโโโ | 4.87G/6.40G [00:27<00:09, 171MB/s]
Downloading best_ckpt_mp0.tar: 76%|โโโโโโโโ | 4.88G/6.40G [00:27<00:09, 180MB/s]
Downloading best_ckpt_mp0.tar: 77%|โโโโโโโโ | 4.90G/6.40G [00:27<00:08, 186MB/s]
Downloading best_ckpt_mp0.tar: 77%|โโโโโโโโ | 4.92G/6.40G [00:27<00:08, 185MB/s]
Downloading best_ckpt_mp0.tar: 77%|โโโโโโโโ | 4.94G/6.40G [00:27<00:11, 132MB/s]
Downloading best_ckpt_mp0.tar: 77%|โโโโโโโโ | 4.95G/6.40G [00:27<00:10, 142MB/s]
Downloading best_ckpt_mp0.tar: 78%|โโโโโโโโ | 4.97G/6.40G [00:27<00:09, 158MB/s]
Downloading best_ckpt_mp0.tar: 78%|โโโโโโโโ | 4.99G/6.40G [00:27<00:08, 170MB/s]
Downloading best_ckpt_mp0.tar: 78%|โโโโโโโโ | 5.01G/6.40G [00:27<00:08, 178MB/s]
Downloading best_ckpt_mp0.tar: 79%|โโโโโโโโ | 5.03G/6.40G [00:28<00:07, 184MB/s]
Downloading best_ckpt_mp0.tar: 79%|โโโโโโโโ | 5.05G/6.40G [00:28<00:07, 190MB/s]
Downloading best_ckpt_mp0.tar: 79%|โโโโโโโโ | 5.07G/6.40G [00:28<00:07, 188MB/s]
Downloading best_ckpt_mp0.tar: 79%|โโโโโโโโ | 5.09G/6.40G [00:28<00:07, 188MB/s]
Downloading best_ckpt_mp0.tar: 80%|โโโโโโโโ | 5.10G/6.40G [00:28<00:07, 190MB/s]
Downloading best_ckpt_mp0.tar: 80%|โโโโโโโโ | 5.12G/6.40G [00:28<00:07, 193MB/s]
Downloading best_ckpt_mp0.tar: 80%|โโโโโโโโ | 5.14G/6.40G [00:28<00:07, 188MB/s]
Downloading best_ckpt_mp0.tar: 81%|โโโโโโโโ | 5.16G/6.40G [00:28<00:07, 186MB/s]
Downloading best_ckpt_mp0.tar: 81%|โโโโโโโโ | 5.18G/6.40G [00:28<00:06, 201MB/s]
Downloading best_ckpt_mp0.tar: 81%|โโโโโโโโโ | 5.20G/6.40G [00:29<00:09, 135MB/s]
Downloading best_ckpt_mp0.tar: 82%|โโโโโโโโโ | 5.22G/6.40G [00:29<00:08, 158MB/s]
Downloading best_ckpt_mp0.tar: 82%|โโโโโโโโโ | 5.24G/6.40G [00:29<00:07, 171MB/s]
Downloading best_ckpt_mp0.tar: 82%|โโโโโโโโโ | 5.26G/6.40G [00:29<00:06, 181MB/s]
Downloading best_ckpt_mp0.tar: 83%|โโโโโโโโโ | 5.28G/6.40G [00:29<00:06, 192MB/s]
Downloading best_ckpt_mp0.tar: 83%|โโโโโโโโโ | 5.30G/6.40G [00:29<00:06, 174MB/s]
Downloading best_ckpt_mp0.tar: 83%|โโโโโโโโโ | 5.32G/6.40G [00:29<00:06, 181MB/s]
Downloading best_ckpt_mp0.tar: 83%|โโโโโโโโโ | 5.34G/6.40G [00:29<00:05, 191MB/s]
Downloading best_ckpt_mp0.tar: 84%|โโโโโโโโโ | 5.36G/6.40G [00:30<00:05, 195MB/s]
Downloading best_ckpt_mp0.tar: 84%|โโโโโโโโโ | 5.38G/6.40G [00:30<00:05, 194MB/s]
Downloading best_ckpt_mp0.tar: 84%|โโโโโโโโโ | 5.40G/6.40G [00:30<00:05, 196MB/s]
Downloading best_ckpt_mp0.tar: 85%|โโโโโโโโโ | 5.42G/6.40G [00:30<00:08, 126MB/s]
Downloading best_ckpt_mp0.tar: 85%|โโโโโโโโโ | 5.43G/6.40G [00:30<00:07, 139MB/s]
Downloading best_ckpt_mp0.tar: 85%|โโโโโโโโโ | 5.46G/6.40G [00:30<00:06, 161MB/s]
Downloading best_ckpt_mp0.tar: 86%|โโโโโโโโโ | 5.48G/6.40G [00:30<00:05, 184MB/s]
Downloading best_ckpt_mp0.tar: 86%|โโโโโโโโโ | 5.50G/6.40G [00:30<00:04, 194MB/s]
Downloading best_ckpt_mp0.tar: 86%|โโโโโโโโโ | 5.52G/6.40G [00:31<00:04, 204MB/s]
Downloading best_ckpt_mp0.tar: 87%|โโโโโโโโโ | 5.54G/6.40G [00:31<00:04, 209MB/s]
Downloading best_ckpt_mp0.tar: 87%|โโโโโโโโโ | 5.56G/6.40G [00:31<00:04, 208MB/s]
Downloading best_ckpt_mp0.tar: 87%|โโโโโโโโโ | 5.59G/6.40G [00:31<00:03, 219MB/s]
Downloading best_ckpt_mp0.tar: 88%|โโโโโโโโโ | 5.61G/6.40G [00:31<00:03, 213MB/s]
Downloading best_ckpt_mp0.tar: 88%|โโโโโโโโโ | 5.63G/6.40G [00:31<00:04, 204MB/s]
Downloading best_ckpt_mp0.tar: 88%|โโโโโโโโโ | 5.65G/6.40G [00:31<00:03, 208MB/s]
Downloading best_ckpt_mp0.tar: 89%|โโโโโโโโโ | 5.67G/6.40G [00:31<00:04, 195MB/s]
Downloading best_ckpt_mp0.tar: 89%|โโโโโโโโโ | 5.69G/6.40G [00:31<00:04, 182MB/s]
Downloading best_ckpt_mp0.tar: 89%|โโโโโโโโโ | 5.71G/6.40G [00:32<00:03, 196MB/s]
Downloading best_ckpt_mp0.tar: 90%|โโโโโโโโโ | 5.73G/6.40G [00:32<00:03, 201MB/s]
Downloading best_ckpt_mp0.tar: 90%|โโโโโโโโโ | 5.75G/6.40G [00:32<00:03, 209MB/s]
Downloading best_ckpt_mp0.tar: 90%|โโโโโโโโโ | 5.77G/6.40G [00:32<00:03, 194MB/s]
Downloading best_ckpt_mp0.tar: 90%|โโโโโโโโโ | 5.79G/6.40G [00:32<00:03, 199MB/s]
Downloading best_ckpt_mp0.tar: 91%|โโโโโโโโโ | 5.81G/6.40G [00:32<00:03, 206MB/s]
Downloading best_ckpt_mp0.tar: 91%|โโโโโโโโโ | 5.83G/6.40G [00:32<00:02, 207MB/s]
Downloading best_ckpt_mp0.tar: 91%|โโโโโโโโโโ| 5.85G/6.40G [00:32<00:02, 205MB/s]
Downloading best_ckpt_mp0.tar: 92%|โโโโโโโโโโ| 5.87G/6.40G [00:32<00:02, 201MB/s]
Downloading best_ckpt_mp0.tar: 92%|โโโโโโโโโโ| 5.89G/6.40G [00:32<00:02, 209MB/s]
Downloading best_ckpt_mp0.tar: 92%|โโโโโโโโโโ| 5.91G/6.40G [00:33<00:02, 214MB/s]
Downloading best_ckpt_mp0.tar: 93%|โโโโโโโโโโ| 5.93G/6.40G [00:33<00:02, 220MB/s]
Downloading best_ckpt_mp0.tar: 93%|โโโโโโโโโโ| 5.95G/6.40G [00:33<00:02, 224MB/s]
Downloading best_ckpt_mp0.tar: 93%|โโโโโโโโโโ| 5.97G/6.40G [00:33<00:02, 219MB/s]
Downloading best_ckpt_mp0.tar: 94%|โโโโโโโโโโ| 5.99G/6.40G [00:33<00:02, 210MB/s]
Downloading best_ckpt_mp0.tar: 94%|โโโโโโโโโโ| 6.01G/6.40G [00:33<00:02, 190MB/s]
Downloading best_ckpt_mp0.tar: 94%|โโโโโโโโโโ| 6.04G/6.40G [00:33<00:01, 206MB/s]
Downloading best_ckpt_mp0.tar: 95%|โโโโโโโโโโ| 6.06G/6.40G [00:33<00:01, 211MB/s]
Downloading best_ckpt_mp0.tar: 95%|โโโโโโโโโโ| 6.08G/6.40G [00:33<00:01, 220MB/s]
Downloading best_ckpt_mp0.tar: 95%|โโโโโโโโโโ| 6.10G/6.40G [00:34<00:01, 210MB/s]
Downloading best_ckpt_mp0.tar: 96%|โโโโโโโโโโ| 6.12G/6.40G [00:34<00:01, 209MB/s]
Downloading best_ckpt_mp0.tar: 96%|โโโโโโโโโโ| 6.14G/6.40G [00:34<00:01, 211MB/s]
Downloading best_ckpt_mp0.tar: 96%|โโโโโโโโโโ| 6.16G/6.40G [00:34<00:01, 209MB/s]
Downloading best_ckpt_mp0.tar: 97%|โโโโโโโโโโ| 6.18G/6.40G [00:34<00:01, 209MB/s]
Downloading best_ckpt_mp0.tar: 97%|โโโโโโโโโโ| 6.20G/6.40G [00:34<00:01, 211MB/s]
Downloading best_ckpt_mp0.tar: 97%|โโโโโโโโโโ| 6.23G/6.40G [00:34<00:00, 224MB/s]
Downloading best_ckpt_mp0.tar: 98%|โโโโโโโโโโ| 6.25G/6.40G [00:34<00:00, 228MB/s]
Downloading best_ckpt_mp0.tar: 98%|โโโโโโโโโโ| 6.27G/6.40G [00:34<00:00, 219MB/s]
Downloading best_ckpt_mp0.tar: 98%|โโโโโโโโโโ| 6.29G/6.40G [00:35<00:00, 205MB/s]
Downloading best_ckpt_mp0.tar: 99%|โโโโโโโโโโ| 6.31G/6.40G [00:35<00:00, 204MB/s]
Downloading best_ckpt_mp0.tar: 99%|โโโโโโโโโโ| 6.33G/6.40G [00:35<00:00, 196MB/s]
Downloading best_ckpt_mp0.tar: 99%|โโโโโโโโโโ| 6.35G/6.40G [00:35<00:00, 207MB/s]
Downloading best_ckpt_mp0.tar: 100%|โโโโโโโโโโ| 6.37G/6.40G [00:35<00:00, 208MB/s]
Downloading best_ckpt_mp0.tar: 100%|โโโโโโโโโโ| 6.39G/6.40G [00:35<00:00, 204MB/s]
Downloading best_ckpt_mp0.tar: 100%|โโโโโโโโโโ| 6.40G/6.40G [00:35<00:00, 193MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 0%| | 0.00/0.98G [00:00<?, ?B/s]
Downloading fcinterp-modafno-2x2.mdlus: 2%|โ | 21.3M/0.98G [00:00<00:04, 223MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 4%|โ | 42.7M/0.98G [00:00<00:04, 204MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 6%|โ | 62.2M/0.98G [00:00<00:05, 194MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 8%|โ | 80.8M/0.98G [00:00<00:05, 177MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 10%|โ | 103M/0.98G [00:00<00:04, 193MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 12%|โโ | 123M/0.98G [00:00<00:04, 199MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 14%|โโ | 145M/0.98G [00:00<00:04, 208MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 16%|โโ | 165M/0.98G [00:00<00:04, 184MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 18%|โโ | 183M/0.98G [00:01<00:04, 186MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 20%|โโ | 201M/0.98G [00:01<00:04, 181MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 22%|โโโ | 219M/0.98G [00:01<00:04, 182MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 24%|โโโ | 243M/0.98G [00:01<00:03, 203MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 26%|โโโ | 265M/0.98G [00:01<00:03, 210MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 29%|โโโ | 287M/0.98G [00:01<00:03, 214MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 31%|โโโ | 307M/0.98G [00:01<00:03, 193MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 33%|โโโโ | 328M/0.98G [00:01<00:03, 199MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 35%|โโโโ | 347M/0.98G [00:01<00:03, 200MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 37%|โโโโ | 368M/0.98G [00:01<00:03, 203MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 39%|โโโโ | 388M/0.98G [00:02<00:03, 206MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 41%|โโโโ | 408M/0.98G [00:02<00:03, 198MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 43%|โโโโโ | 427M/0.98G [00:02<00:03, 195MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 45%|โโโโโ | 449M/0.98G [00:02<00:02, 202MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 47%|โโโโโ | 468M/0.98G [00:02<00:02, 200MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 49%|โโโโโ | 488M/0.98G [00:02<00:02, 200MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 51%|โโโโโ | 509M/0.98G [00:02<00:02, 206MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 53%|โโโโโโ | 531M/0.98G [00:02<00:02, 213MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 55%|โโโโโโ | 552M/0.98G [00:02<00:02, 215MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 57%|โโโโโโ | 573M/0.98G [00:03<00:02, 201MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 59%|โโโโโโ | 592M/0.98G [00:03<00:02, 188MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 61%|โโโโโโ | 611M/0.98G [00:03<00:02, 190MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 63%|โโโโโโโ | 631M/0.98G [00:03<00:01, 195MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 65%|โโโโโโโ | 649M/0.98G [00:03<00:02, 180MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 67%|โโโโโโโ | 669M/0.98G [00:03<00:01, 188MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 69%|โโโโโโโ | 690M/0.98G [00:03<00:01, 197MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 71%|โโโโโโโ | 711M/0.98G [00:03<00:01, 203MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 73%|โโโโโโโโ | 731M/0.98G [00:03<00:01, 193MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 75%|โโโโโโโโ | 751M/0.98G [00:03<00:01, 197MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 77%|โโโโโโโโ | 770M/0.98G [00:04<00:01, 188MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 79%|โโโโโโโโ | 790M/0.98G [00:04<00:01, 195MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 81%|โโโโโโโโ | 813M/0.98G [00:04<00:00, 205MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 84%|โโโโโโโโโ | 836M/0.98G [00:04<00:00, 216MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 86%|โโโโโโโโโ | 857M/0.98G [00:04<00:00, 197MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 88%|โโโโโโโโโ | 877M/0.98G [00:04<00:00, 201MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 90%|โโโโโโโโโ | 897M/0.98G [00:04<00:00, 199MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 92%|โโโโโโโโโโ| 922M/0.98G [00:04<00:00, 217MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 94%|โโโโโโโโโโ| 943M/0.98G [00:04<00:00, 214MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 96%|โโโโโโโโโโ| 963M/0.98G [00:05<00:00, 214MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 98%|โโโโโโโโโโ| 984M/0.98G [00:05<00:00, 213MB/s]
Downloading fcinterp-modafno-2x2.mdlus: 100%|โโโโโโโโโโ| 0.98G/0.98G [00:05<00:00, 200MB/s]
Downloading global_means.npy: 0%| | 0.00/728 [00:00<?, ?B/s]
Downloading global_means.npy: 100%|โโโโโโโโโโ| 728/728 [00:00<00:00, 310kB/s]
Downloading global_stds.npy: 0%| | 0.00/728 [00:00<?, ?B/s]
Downloading global_stds.npy: 100%|โโโโโโโโโโ| 728/728 [00:00<00:00, 233kB/s]
Downloading orography.nc: 0%| | 0.00/2.50M [00:00<?, ?B/s]
Downloading orography.nc: 100%|โโโโโโโโโโ| 2.50M/2.50M [00:00<00:00, 38.8MB/s]
Downloading land_sea_mask.nc: 0%| | 0.00/748k [00:00<?, ?B/s]
Downloading land_sea_mask.nc: 100%|โโโโโโโโโโ| 748k/748k [00:00<00:00, 196MB/s]Run the Interpolation Model¶
Now run the interpolation model to get forecasts at a finer time resolution. The base model (SFNO) produces forecasts at 6-hour intervals, and the interpolation model will interpolate to 1-hour intervals.
# Define forecast parameters
forecast_date = "2024-01-01"
nsteps = 5 # Number of interpolated forecast steps
# Run the model
from earth2studio.run import deterministic
io = deterministic([forecast_date], nsteps, interp_model, data, io)
print(io.root.tree())
Console output397 lines
2026-08-15 04:50:14.475 | INFO | earth2studio.run:deterministic:85 - Running simple workflow!
2026-08-15 04:50:14.475 | INFO | earth2studio.run:deterministic:92 - Inference device: cuda
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.155 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.155 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.215 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.221 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.255 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.255 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.256 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.257 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.260 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.373 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.376 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.377 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.378 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.472 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.475 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.476 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.499 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.534 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.535 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.622 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.635 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.635 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.636 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.643 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.644 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.645 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.801 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.802 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.802 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.803 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.804 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.804 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.805 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.806 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.844 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.886 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:15.945 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:16.037 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:16.039 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:16.040 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:16.109 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171
Fetching GFS data: 0%| | 0/73 [00:00<?, ?it/s]
2026-08-15 04:50:16.163 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.164 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.164 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.165 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.166 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.240 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.241 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.242 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.243 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.324 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.418 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.420 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.451 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.480 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.482 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.520 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.522 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.567 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.568 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.570 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.572 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.626 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.628 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
2026-08-15 04:50:16.629 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551
Fetching GFS data: 0%| | 0/73 [00:01<?, ?it/s]
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.926 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.927 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.927 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.931 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.931 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.946 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.947 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
2026-08-15 04:50:16.947 | DEBUG | earth2studio.data.gfs:fetch_array:386 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502
Fetching GFS data: 1%|โ | 1/73 [00:01<02:03, 1.72s/it]
Fetching GFS data: 79%|โโโโโโโโ | 58/73 [00:01<00:00, 39.91it/s]
Fetching GFS data: 100%|โโโโโโโโโโ| 73/73 [00:01<00:00, 36.85it/s]
2026-08-15 04:50:17.298 | SUCCESS | earth2studio.run:deterministic:154 - Fetched data from GFS
2026-08-15 04:50:17.299 | INFO | earth2studio.run:deterministic:162 - Inference starting!
Running inference: 0%| | 0/6 [00:00<?, ?it/s]
Running inference: 17%|โโ | 1/6 [00:02<00:12, 2.56s/it]
Running inference: 33%|โโโโ | 2/6 [00:08<00:17, 4.47s/it]
Running inference: 50%|โโโโโ | 3/6 [00:11<00:11, 3.89s/it]
Running inference: 67%|โโโโโโโ | 4/6 [00:14<00:07, 3.61s/it]
Running inference: 83%|โโโโโโโโโ | 5/6 [00:17<00:03, 3.37s/it]
Running inference: 100%|โโโโโโโโโโ| 6/6 [00:20<00:00, 3.23s/it]
Running inference: 100%|โโโโโโโโโโ| 6/6 [00:20<00:00, 3.44s/it]
2026-08-15 04:50:37.935 | SUCCESS | earth2studio.run:deterministic:189 -
Inference complete
/
โโโ lat (720,) float64
โโโ lead_time (6,) timedelta64[h]
โโโ lon (1440,) float64
โโโ msl (1, 6, 720, 1440) float32
โโโ q100 (1, 6, 720, 1440) float32
โโโ q1000 (1, 6, 720, 1440) float32
โโโ q150 (1, 6, 720, 1440) float32
โโโ q200 (1, 6, 720, 1440) float32
โโโ q250 (1, 6, 720, 1440) float32
โโโ q300 (1, 6, 720, 1440) float32
โโโ q400 (1, 6, 720, 1440) float32
โโโ q50 (1, 6, 720, 1440) float32
โโโ q500 (1, 6, 720, 1440) float32
โโโ q600 (1, 6, 720, 1440) float32
โโโ q700 (1, 6, 720, 1440) float32
โโโ q850 (1, 6, 720, 1440) float32
โโโ q925 (1, 6, 720, 1440) float32
โโโ sp (1, 6, 720, 1440) float32
โโโ t100 (1, 6, 720, 1440) float32
โโโ t1000 (1, 6, 720, 1440) float32
โโโ t150 (1, 6, 720, 1440) float32
โโโ t200 (1, 6, 720, 1440) float32
โโโ t250 (1, 6, 720, 1440) float32
โโโ t2m (1, 6, 720, 1440) float32
โโโ t300 (1, 6, 720, 1440) float32
โโโ t400 (1, 6, 720, 1440) float32
โโโ t50 (1, 6, 720, 1440) float32
โโโ t500 (1, 6, 720, 1440) float32
โโโ t600 (1, 6, 720, 1440) float32
โโโ t700 (1, 6, 720, 1440) float32
โโโ t850 (1, 6, 720, 1440) float32
โโโ t925 (1, 6, 720, 1440) float32
โโโ tcwv (1, 6, 720, 1440) float32
โโโ time (1,) datetime64[ns]
โโโ u100 (1, 6, 720, 1440) float32
โโโ u1000 (1, 6, 720, 1440) float32
โโโ u100m (1, 6, 720, 1440) float32
โโโ u10m (1, 6, 720, 1440) float32
โโโ u150 (1, 6, 720, 1440) float32
โโโ u200 (1, 6, 720, 1440) float32
โโโ u250 (1, 6, 720, 1440) float32
โโโ u300 (1, 6, 720, 1440) float32
โโโ u400 (1, 6, 720, 1440) float32
โโโ u50 (1, 6, 720, 1440) float32
โโโ u500 (1, 6, 720, 1440) float32
โโโ u600 (1, 6, 720, 1440) float32
โโโ u700 (1, 6, 720, 1440) float32
โโโ u850 (1, 6, 720, 1440) float32
โโโ u925 (1, 6, 720, 1440) float32
โโโ v100 (1, 6, 720, 1440) float32
โโโ v1000 (1, 6, 720, 1440) float32
โโโ v100m (1, 6, 720, 1440) float32
โโโ v10m (1, 6, 720, 1440) float32
โโโ v150 (1, 6, 720, 1440) float32
โโโ v200 (1, 6, 720, 1440) float32
โโโ v250 (1, 6, 720, 1440) float32
โโโ v300 (1, 6, 720, 1440) float32
โโโ v400 (1, 6, 720, 1440) float32
โโโ v50 (1, 6, 720, 1440) float32
โโโ v500 (1, 6, 720, 1440) float32
โโโ v600 (1, 6, 720, 1440) float32
โโโ v700 (1, 6, 720, 1440) float32
โโโ v850 (1, 6, 720, 1440) float32
โโโ v925 (1, 6, 720, 1440) float32
โโโ z100 (1, 6, 720, 1440) float32
โโโ z1000 (1, 6, 720, 1440) float32
โโโ z150 (1, 6, 720, 1440) float32
โโโ z200 (1, 6, 720, 1440) float32
โโโ z250 (1, 6, 720, 1440) float32
โโโ z300 (1, 6, 720, 1440) float32
โโโ z400 (1, 6, 720, 1440) float32
โโโ z50 (1, 6, 720, 1440) float32
โโโ z500 (1, 6, 720, 1440) float32
โโโ z600 (1, 6, 720, 1440) float32
โโโ z700 (1, 6, 720, 1440) float32
โโโ z850 (1, 6, 720, 1440) float32
โโโ z925 (1, 6, 720, 1440) float32Visualize Results¶
Let's visualize the total column water vapour (tcwv) at each time step and save them as separate files.
# Get the number of time steps
n_steps = io["tcwv"].shape[1]
# Create a single figure with subplots
fig, axs = plt.subplots(2, 3, figsize=(15, 6))
axs = axs.ravel()
# Create plots for each time step
for step in range(min([n_steps, 6])):
im = axs[step].imshow(
io["tcwv"][0, step], cmap="twilight_shifted", aspect="auto", vmin=0, vmax=85
)
axs[step].set_title(f"Water Vapour - Step: {step} hrs")
fig.colorbar(im, ax=axs[step], label="kg/m^2")
plt.tight_layout()
# Save the figure
plt.savefig("outputs/12_tcwv_steps.jpg")
