Huge Ensembles (HENS) Checkpoints#

Basic multi-checkpoint Huge Ensembles (HENS) inference workflow.

This example provides a basic example to load the Huge Ensemble checkpoints to perform ensemble inference. This notebook aims to demonstrate the foundations of running a multi-checkpoint workflow from Earth2Studio components. For more details about HENS, see:

Warning

We encourage users to familiarize themselves with the license restrictions of this model’s checkpoints.

For the complete HENS workflow, we encourage users to have a look at the HENS recipe which provides a end-to-end solution to leverage HENS for downstream analysis such as tropical cyclone tracking:

In this example you will learn:

  • How to load the HENS checkpoints with a custom model package

  • How to load the HENS perturbation method

  • How to create a simple ensemble inference loop

  • How to visualize results

# /// script
# dependencies = [
#   "torch==2.11.0", # Match lock file to avoid torch-harmonics issue
#   "earth2studio[sfno] @ git+https://github.com/NVIDIA/earth2studio.git",
#   "cartopy",
# ]
# ///

Set Up#

First, import the necessary modules and set up our environment and load the required modules. HENS has checkpoints conveniently stored on HuggingFace that we will use. Rather than loading the default checkpoint from the original SFNO paper, create a model package that points to the specific HENS checkpoint we want to use instead.

This example also needs the following:

import os

os.makedirs("outputs", exist_ok=True)
from dotenv import load_dotenv

load_dotenv()  # TODO: make common example prep function

from earth2studio.data import GFS
from earth2studio.io import ZarrBackend
from earth2studio.models.auto import Package
from earth2studio.models.px import SFNO
from earth2studio.perturbation import (
    CorrelatedSphericalGaussian,
    HemisphericCentredBredVector,
)
from earth2studio.run import ensemble

# Set up two model packages for each checkpoint
# Note the modification of the cache location to avoid overwriting
model_package_1 = Package(
    "hf://datasets/maheshankur10/hens/earth2mip_prod_registry/sfno_linear_74chq_sc2_layers8_edim620_wstgl2-epoch70_seed102",
    cache_options={
        "cache_storage": Package.default_cache("hens_1"),
        "same_names": True,
    },
)

model_package_2 = Package(
    "hf://datasets/maheshankur10/hens/earth2mip_prod_registry/sfno_linear_74chq_sc2_layers8_edim620_wstgl2-epoch70_seed103",
    cache_options={
        "cache_storage": Package.default_cache("hens_2"),
        "same_names": True,
    },
)

# Create the data source
data = GFS()

Execute the Workflow#

Next we execute the ensemble workflow for each model but loop through each checkpoint. Note that the models themselves have not been loaded into memory yet, this will be done one at a time to minimize the memory footprint of inference on a GPU. Before the ensemble workflow can get executed the following set up is needed:

  • Initialize the SFNO model from checkpoint

  • Initialize the perturbation method with the prognostic model

  • Initialize the IO zarr store for this model

If multiple GPUs are being used, one could parallelize inference using different checkpoints on each card.

import gc
from datetime import datetime, timedelta

import numpy as np
import torch

start_date = datetime(2024, 1, 1)
nsteps = 4
nensemble = 2

for i, package in enumerate([model_package_1, model_package_2]):
    # Load SFNO model from package
    # HENS checkpoints use different inputs than default SFNO (inclusion of d2m)
    # Can find this in the config.json, the load_model function in SFNO handles this
    model = SFNO.load_model(package)

    # Perturbation method
    # Here we will simplify the process that's in the original paper for conciseness
    noise_amplification = torch.zeros(model.input_coords()["variable"].shape[0])
    index_z500 = list(model.input_coords()["variable"]).index("z500")
    noise_amplification[index_z500] = 39.27  # z500 (0.35 * z500 skill)
    noise_amplification = noise_amplification.reshape(1, 1, 1, -1, 1, 1)

    seed_perturbation = CorrelatedSphericalGaussian(noise_amplitude=noise_amplification)
    perturbation = HemisphericCentredBredVector(
        model, data, seed_perturbation, noise_amplitude=noise_amplification
    )

    # IO object
    io = ZarrBackend(
        file_name=f"outputs/11_hens_{i}.zarr",
        chunks={"ensemble": 1, "time": 1, "lead_time": 1},
        backend_kwargs={"overwrite": True},
    )

    io = ensemble(
        ["2024-01-01"],
        nsteps,
        nensemble,
        model,
        data,
        io,
        perturbation,
        batch_size=1,
        output_coords={"variable": np.array(["u10m", "v10m"])},
    )

    print(io.root.tree())
    # Do some manual clean up to free up VRAM
    del model
    del perturbation
    gc.collect()
    torch.cuda.empty_cache()
Downloading config.json: 0%|          | 0.00/22.4k [00:00<?, ?B/s]
Downloading config.json: 100%|██████████| 22.4k/22.4k [00:00<00:00, 114kB/s]
Downloading config.json: 100%|██████████| 22.4k/22.4k [00:00<00:00, 114kB/s]

Downloading global_means.npy: 0%|          | 0.00/720 [00:00<?, ?B/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 6.16kB/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 6.12kB/s]

Downloading global_stds.npy: 0%|          | 0.00/720 [00:00<?, ?B/s]
Downloading global_stds.npy: 100%|██████████| 720/720 [00:00<00:00, 5.87kB/s]
Downloading global_stds.npy: 100%|██████████| 720/720 [00:00<00:00, 5.82kB/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, 19.5MB/s]
Downloading orography.nc: 100%|██████████| 2.50M/2.50M [00:00<00:00, 19.1MB/s]

Downloading land_mask.nc: 0%|          | 0.00/748k [00:00<?, ?B/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 6.86MB/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 6.77MB/s]

Downloading best_ckpt_mp0.tar: 0%|          | 0.00/8.31G [00:00<?, ?B/s]
Downloading best_ckpt_mp0.tar: 0%|          | 10.0M/8.31G [00:00<02:25, 61.0MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 50.0M/8.31G [00:00<00:42, 210MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 90.0M/8.31G [00:00<00:30, 287MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 130M/8.31G [00:00<00:26, 333MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 170M/8.31G [00:00<00:24, 360MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 210M/8.31G [00:00<00:23, 366MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 250M/8.31G [00:00<00:23, 364MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 290M/8.31G [00:00<00:25, 340MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 330M/8.31G [00:01<00:25, 335MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 370M/8.31G [00:01<00:24, 342MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍         | 410M/8.31G [00:01<00:24, 349MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌         | 460M/8.31G [00:01<00:22, 377MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 510M/8.31G [00:01<00:20, 406MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 560M/8.31G [00:01<00:20, 409MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 610M/8.31G [00:01<00:19, 425MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 660M/8.31G [00:01<00:21, 382MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 700M/8.31G [00:02<00:20, 390MB/s]
Downloading best_ckpt_mp0.tar: 9%|▊         | 740M/8.31G [00:02<00:21, 388MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 780M/8.31G [00:02<00:22, 355MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉         | 820M/8.31G [00:02<00:22, 364MB/s]
Downloading best_ckpt_mp0.tar: 10%|█         | 860M/8.31G [00:02<00:22, 361MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 900M/8.31G [00:02<00:22, 360MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 940M/8.31G [00:02<00:21, 370MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 980M/8.31G [00:02<00:21, 361MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 1.00G/8.31G [00:03<00:22, 354MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 1.04G/8.31G [00:03<00:22, 348MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎        | 1.07G/8.31G [00:03<00:22, 349MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎        | 1.11G/8.31G [00:03<00:21, 352MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.15G/8.31G [00:03<00:21, 354MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.19G/8.31G [00:03<00:21, 354MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍        | 1.23G/8.31G [00:03<00:21, 362MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌        | 1.27G/8.31G [00:03<00:20, 376MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.31G/8.31G [00:03<00:20, 376MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.35G/8.31G [00:04<00:20, 365MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.39G/8.31G [00:04<00:19, 377MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.43G/8.31G [00:04<00:19, 387MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.46G/8.31G [00:04<00:18, 395MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.50G/8.31G [00:04<00:18, 396MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▊        | 1.54G/8.31G [00:04<00:18, 385MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.58G/8.31G [00:04<00:19, 376MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.62G/8.31G [00:04<00:19, 377MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.66G/8.31G [00:04<00:18, 386MB/s]
Downloading best_ckpt_mp0.tar: 20%|██        | 1.70G/8.31G [00:05<00:18, 374MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.74G/8.31G [00:05<00:18, 378MB/s]
Downloading best_ckpt_mp0.tar: 21%|██▏       | 1.78G/8.31G [00:05<00:18, 387MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.82G/8.31G [00:05<00:23, 300MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.86G/8.31G [00:05<00:22, 305MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.89G/8.31G [00:05<00:21, 317MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.93G/8.31G [00:05<00:21, 320MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▎       | 1.97G/8.31G [00:05<00:20, 329MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍       | 2.01G/8.31G [00:06<00:21, 318MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍       | 2.06G/8.31G [00:06<00:18, 360MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌       | 2.10G/8.31G [00:06<00:18, 370MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌       | 2.14G/8.31G [00:06<00:17, 377MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▋       | 2.19G/8.31G [00:06<00:16, 408MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.24G/8.31G [00:06<00:15, 427MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.29G/8.31G [00:06<00:14, 441MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.33G/8.31G [00:06<00:14, 454MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▊       | 2.38G/8.31G [00:06<00:13, 463MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.43G/8.31G [00:07<00:13, 469MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉       | 2.48G/8.31G [00:07<00:13, 468MB/s]
Downloading best_ckpt_mp0.tar: 30%|███       | 2.53G/8.31G [00:07<00:13, 445MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.58G/8.31G [00:07<00:14, 413MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.63G/8.31G [00:07<00:15, 392MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.67G/8.31G [00:07<00:15, 382MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.71G/8.31G [00:07<00:15, 377MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.74G/8.31G [00:07<00:15, 386MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.78G/8.31G [00:08<00:15, 379MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.82G/8.31G [00:08<00:15, 370MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.86G/8.31G [00:08<00:16, 345MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍      | 2.90G/8.31G [00:08<00:16, 362MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌      | 2.94G/8.31G [00:08<00:15, 376MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌      | 2.98G/8.31G [00:08<00:14, 387MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▋      | 3.02G/8.31G [00:08<00:14, 385MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.06G/8.31G [00:08<00:14, 377MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.10G/8.31G [00:08<00:15, 372MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.13G/8.31G [00:09<00:15, 370MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.17G/8.31G [00:09<00:15, 366MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▊      | 3.21G/8.31G [00:09<00:15, 364MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.25G/8.31G [00:09<00:14, 368MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉      | 3.29G/8.31G [00:09<00:14, 379MB/s]
Downloading best_ckpt_mp0.tar: 40%|████      | 3.33G/8.31G [00:09<00:13, 390MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.37G/8.31G [00:09<00:13, 389MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.41G/8.31G [00:09<00:14, 360MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏     | 3.45G/8.31G [00:09<00:14, 360MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.49G/8.31G [00:10<00:14, 353MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.53G/8.31G [00:10<00:14, 353MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.56G/8.31G [00:10<00:14, 355MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.60G/8.31G [00:10<00:14, 359MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.64G/8.31G [00:10<00:14, 358MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.68G/8.31G [00:10<00:14, 352MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍     | 3.72G/8.31G [00:10<00:14, 352MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌     | 3.76G/8.31G [00:10<00:14, 347MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.80G/8.31G [00:11<00:14, 336MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.84G/8.31G [00:11<00:15, 315MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.89G/8.31G [00:11<00:13, 352MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.93G/8.31G [00:11<00:13, 339MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 3.96G/8.31G [00:11<00:15, 300MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 4.00G/8.31G [00:11<00:15, 304MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▊     | 4.03G/8.31G [00:11<00:16, 277MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉     | 4.08G/8.31G [00:12<00:14, 322MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉     | 4.12G/8.31G [00:12<00:13, 343MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████     | 4.16G/8.31G [00:12<00:12, 360MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.20G/8.31G [00:12<00:12, 345MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.24G/8.31G [00:12<00:13, 334MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████▏    | 4.28G/8.31G [00:12<00:12, 342MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.32G/8.31G [00:12<00:12, 333MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.36G/8.31G [00:12<00:13, 316MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.39G/8.31G [00:13<00:13, 309MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.42G/8.31G [00:13<00:13, 299MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▎    | 4.46G/8.31G [00:13<00:13, 312MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍    | 4.49G/8.31G [00:13<00:13, 305MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍    | 4.53G/8.31G [00:13<00:12, 328MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌    | 4.57G/8.31G [00:13<00:11, 352MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.62G/8.31G [00:13<00:10, 375MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.66G/8.31G [00:13<00:10, 385MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.70G/8.31G [00:13<00:09, 392MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.74G/8.31G [00:14<00:09, 396MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.78G/8.31G [00:14<00:10, 373MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.81G/8.31G [00:14<00:10, 351MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.85G/8.31G [00:14<00:10, 364MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.89G/8.31G [00:14<00:09, 377MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.93G/8.31G [00:14<00:09, 381MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉    | 4.97G/8.31G [00:14<00:09, 377MB/s]
Downloading best_ckpt_mp0.tar: 60%|██████    | 5.01G/8.31G [00:14<00:10, 340MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████    | 5.05G/8.31G [00:15<00:11, 315MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████    | 5.09G/8.31G [00:15<00:10, 324MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.13G/8.31G [00:15<00:10, 317MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.17G/8.31G [00:15<00:10, 321MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.21G/8.31G [00:15<00:12, 258MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.23G/8.31G [00:15<00:12, 258MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.27G/8.31G [00:15<00:11, 282MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍   | 5.31G/8.31G [00:16<00:10, 300MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍   | 5.35G/8.31G [00:16<00:10, 316MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍   | 5.39G/8.31G [00:16<00:09, 327MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌   | 5.43G/8.31G [00:16<00:09, 338MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.47G/8.31G [00:16<00:09, 337MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▋   | 5.51G/8.31G [00:16<00:08, 337MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.55G/8.31G [00:16<00:08, 336MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.59G/8.31G [00:16<00:08, 336MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.62G/8.31G [00:17<00:08, 340MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.66G/8.31G [00:17<00:08, 345MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▊   | 5.70G/8.31G [00:17<00:08, 348MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.74G/8.31G [00:17<00:08, 344MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉   | 5.78G/8.31G [00:17<00:08, 328MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████   | 5.82G/8.31G [00:17<00:08, 321MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.86G/8.31G [00:17<00:08, 310MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.90G/8.31G [00:17<00:08, 313MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████▏  | 5.94G/8.31G [00:18<00:07, 338MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏  | 5.98G/8.31G [00:18<00:08, 306MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏  | 6.02G/8.31G [00:18<00:08, 290MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.05G/8.31G [00:18<00:07, 304MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.09G/8.31G [00:18<00:07, 319MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍  | 6.13G/8.31G [00:18<00:07, 328MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍  | 6.17G/8.31G [00:18<00:06, 335MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍  | 6.21G/8.31G [00:18<00:06, 341MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌  | 6.25G/8.31G [00:19<00:06, 344MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.29G/8.31G [00:19<00:06, 346MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.33G/8.31G [00:19<00:06, 335MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.37G/8.31G [00:19<00:06, 344MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.41G/8.31G [00:19<00:05, 362MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊  | 6.45G/8.31G [00:19<00:05, 377MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊  | 6.48G/8.31G [00:19<00:05, 385MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▊  | 6.52G/8.31G [00:19<00:04, 389MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉  | 6.56G/8.31G [00:19<00:04, 395MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉  | 6.60G/8.31G [00:20<00:04, 384MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉  | 6.64G/8.31G [00:20<00:04, 376MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████  | 6.68G/8.31G [00:20<00:04, 371MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.72G/8.31G [00:20<00:04, 366MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████▏ | 6.76G/8.31G [00:20<00:04, 362MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.81G/8.31G [00:20<00:04, 391MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.86G/8.31G [00:20<00:03, 411MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.90G/8.31G [00:20<00:03, 430MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▎ | 6.95G/8.31G [00:21<00:03, 388MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 6.99G/8.31G [00:21<00:03, 369MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.03G/8.31G [00:21<00:03, 359MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.07G/8.31G [00:21<00:03, 344MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.11G/8.31G [00:21<00:03, 357MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.15G/8.31G [00:21<00:03, 367MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.19G/8.31G [00:21<00:03, 380MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.23G/8.31G [00:21<00:02, 388MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.27G/8.31G [00:21<00:02, 395MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.30G/8.31G [00:22<00:02, 398MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.34G/8.31G [00:22<00:02, 403MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.38G/8.31G [00:22<00:02, 406MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.42G/8.31G [00:22<00:02, 392MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.46G/8.31G [00:22<00:02, 351MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.50G/8.31G [00:22<00:02, 342MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.54G/8.31G [00:22<00:02, 345MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.58G/8.31G [00:22<00:02, 365MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.62G/8.31G [00:22<00:01, 378MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.66G/8.31G [00:23<00:01, 384MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.71G/8.31G [00:23<00:01, 397MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.75G/8.31G [00:23<00:01, 415MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.80G/8.31G [00:23<00:01, 421MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.85G/8.31G [00:23<00:01, 421MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.90G/8.31G [00:23<00:01, 420MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.95G/8.31G [00:23<00:00, 420MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▋| 8.00G/8.31G [00:23<00:00, 421MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.05G/8.31G [00:24<00:00, 421MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.10G/8.31G [00:24<00:00, 421MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.14G/8.31G [00:24<00:00, 401MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.18G/8.31G [00:24<00:00, 395MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.22G/8.31G [00:24<00:00, 394MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.26G/8.31G [00:24<00:00, 388MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.30G/8.31G [00:24<00:00, 370MB/s]
Downloading best_ckpt_mp0.tar: 100%|██████████| 8.31G/8.31G [00:24<00:00, 359MB/s]
2026-05-18 02:11:27.129 | INFO     | earth2studio.run:ensemble:328 - Running ensemble inference!
2026-05-18 02:11:27.129 | INFO     | earth2studio.run:ensemble:336 - Inference device: cuda

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.440 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.455 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.467 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.474 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.475 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.487 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.498 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.499 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.500 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.500 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.501 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.502 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.502 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.503 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.503 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.514 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.515 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.516 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.527 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.528 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.528 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.539 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.540 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.551 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.561 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.572 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.573 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.584 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.595 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.596 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.597 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.598 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.598 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.609 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.610 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.621 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.622 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.633 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.634 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.634 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.635 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 404382959-913875

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.636 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.636 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.647 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.648 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.649 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.660 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.661 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.661 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.662 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.663 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.663 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.664 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.675 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.686 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.687 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.687 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.688 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.689 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.689 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.690 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.701 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.702 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.703 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.714 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.715 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.725 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.726 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.727 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.738 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.749 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.750 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.760 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:11:28.771 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]
Fetching GFS data:   1%|▏         | 1/74 [00:00<00:24,  3.01it/s]
Fetching GFS data:  36%|███▋      | 27/74 [00:01<00:01, 29.22it/s]
Fetching GFS data:  41%|████      | 30/74 [00:01<00:01, 28.23it/s]
Fetching GFS data:  47%|████▋     | 35/74 [00:01<00:01, 31.23it/s]
Fetching GFS data:  55%|█████▌    | 41/74 [00:01<00:00, 35.74it/s]
Fetching GFS data:  62%|██████▏   | 46/74 [00:01<00:00, 34.42it/s]
Fetching GFS data:  70%|███████   | 52/74 [00:01<00:00, 39.61it/s]
Fetching GFS data:  80%|███████▉  | 59/74 [00:01<00:00, 45.18it/s]
Fetching GFS data:  88%|████████▊ | 65/74 [00:01<00:00, 48.49it/s]
Fetching GFS data:  97%|█████████▋| 72/74 [00:01<00:00, 51.48it/s]
Fetching GFS data: 100%|██████████| 74/74 [00:01<00:00, 37.04it/s]
2026-05-18 02:11:30.703 | SUCCESS  | earth2studio.run:ensemble:358 - Fetched data from GFS
2026-05-18 02:11:30.738 | INFO     | earth2studio.run:ensemble:386 - Starting 2 Member Ensemble Inference with             2 number of batches.



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.156 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 391206752-950631



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.158 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 188547657-732362



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.161 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 251230645-803982



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.184 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.201 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151411717-492740



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.202 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 413569354-967478



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.203 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 408062467-879185



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.214 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 404382959-913875



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.225 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 146298066-757068



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.226 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 198733171-727414



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.227 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273134252-842380



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.228 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.239 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 414536832-944207



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.240 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 399434135-840126



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.241 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.252 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 166625127-737840



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.253 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 209414924-720687



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.253 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 294691465-856457



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.264 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.275 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 458864763-976640



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.276 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 0-1002356



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.277 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.288 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 455143487-973469



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.289 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177186467-735476



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.290 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 231450583-817016



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.290 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 328218119-898804



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.291 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.302 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 182534428-973065



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.303 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 459841403-963517



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.303 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 420029701-1181204



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.314 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.325 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 187427126-731084



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.326 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 252718154-803297



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.327 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 352251507-938982



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.328 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.338 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 407776106-914088



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.339 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 409589953-513282



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.340 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 410138186-925503



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.341 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.352 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410990905-942963



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.353 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 197458039-726350



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.353 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 274954839-840806



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.354 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 397402829-996456



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.365 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.376 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 401150630-841557



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.377 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150405231-492889



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.378 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.388 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208203900-724608



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.390 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 296442783-848791



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.390 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 146062919-744726



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.391 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.402 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 0-998436



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.403 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 171310346-917594



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.403 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.414 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410028724-962181



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.415 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 229726800-817683



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.416 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 329799511-896349



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.416 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 166333209-766399



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.417 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.427 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 421300034-1181973



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.429 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 182403895-973883



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.429 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.440 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 250614479-803472



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.441 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 353999639-932543



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.441 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 177568911-747761



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.442 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.453 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 411298483-922437



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.454 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193097116-578707



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.455 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.465 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 271656637-839000



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.466 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 399119260-992978



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.467 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 188024992-754829



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.468 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.479 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152040961-493376



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.480 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203402796-589859



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.481 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.491 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293067730-844758



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.492 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 147686885-749156



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.493 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 198088880-741667



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.494 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.504 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 172983015-919489



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.505 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 214401793-605228



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.506 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.517 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 326532594-890776



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.518 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167987850-767526



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.519 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208774754-755459



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.519 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.530 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 183650695-972676



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.531 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 236529889-574678



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.532 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.543 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 350547115-929875



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.544 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178922087-749074



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.544 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230889350-725457



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.545 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.556 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194353089-579580



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.557 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 257599990-916338



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.558 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.569 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.580 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 395625686-986980



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.581 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 189280019-753310



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.582 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 252034627-722839



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.583 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.594 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 204760966-590133



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.595 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 279542923-898410



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.595 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.606 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 147055134-746039



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.607 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 199460585-743054



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.608 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273976632-728286



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.609 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.619 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 215757651-606283



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.620 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301084617-899856



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.621 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.631 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 167362967-767433



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.633 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 210135611-756844



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.633 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 295547922-758800



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.634 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.645 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 203498423-589842



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.646 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 237907755-575171



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.647 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 334970306-938022



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.647 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.658 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177921943-752161



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.659 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 232267599-726560



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.660 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 329116923-847018



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.671 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.682 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 259087914-916036



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.683 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359046224-949853



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.684 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.695 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 188158210-757568



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.696 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 253521451-719382



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.697 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 353190489-858785



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.697 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.708 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214171943-607657



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.709 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 281281791-898336



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.710 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 392065452-969982



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.711 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.721 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 198184389-747202



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.722 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 275795645-726593



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.722 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 387075654-860051



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.723 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.734 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193241168-579502



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.735 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 302819301-896743



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.736 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150898120-463977



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.736 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.747 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208928508-761990



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.748 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 297291574-754222



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.749 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 147098312-1020507



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.750 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.761 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236071718-576224



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.762 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 336687879-934577



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.763 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 172227940-905153



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.764 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.774 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 230544483-732296



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.775 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 330695860-846471



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.776 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 167747263-1134797



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.777 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.788 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 256868469-544885



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.789 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 360780804-942376



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.790 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 183377778-912918



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.790 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.801 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 251417951-723202



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.802 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 354932182-856465



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.803 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 179108822-1168912



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.804 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.815 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 277968948-896544



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.816 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 393767669-968511



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.817 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193675823-578990



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.818 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.829 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 272495637-727089



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.830 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 388773222-859658



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.830 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 189840662-1179194



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.831 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.842 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 299407315-892557



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.843 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152534337-466715



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.844 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203992655-596596



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.845 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.856 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293912488-745515



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.857 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 148724824-1026834



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.858 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 200082859-1168749



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.858 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.869 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 333255379-930566



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.871 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 173902504-907905



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.871 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 215007021-618021



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.872 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.883 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 327423370-840295



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.884 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 169411507-1139754



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.885 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 210882735-1186600



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.885 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.896 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 357316538-939003



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.897 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 184623371-911795



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.898 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 237104567-587286



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.899 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.910 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 351476990-852387



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.911 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 180472580-1170586



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.912 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 397639332-840040



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.913 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 232918171-1262978



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.914 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.925 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 390243670-963082



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.926 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194932669-578572



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.926 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 258516328-918758



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.927 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.938 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 385279214-852759



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.943 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 191094271-1176950



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.944 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 254001564-1267820



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.945 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.957 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151904457-465264



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.958 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 205351099-596883



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.958 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 280441333-889661



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.959 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.971 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 148091792-1031496



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.972 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 201444244-1166535



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.972 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 275899947-1309015



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.973 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.984 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172991226-911247



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.985 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 216363934-618291



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.986 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301984473-889315



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.987 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.998 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 0-1031836



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.999 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 168789447-980831



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:31.999 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 212236463-1187155



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.000 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 297490896-1247432



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.001 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 183507493-913609



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.002 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 238482926-588964



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.002 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 335908328-940530



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.003 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.014 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 179476202-1048997



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.015 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 234294213-1264469



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.016 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 331362340-1232012



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.017 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193820670-578278



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.018 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 260003950-922575



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.018 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359996077-949678



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.019 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.030 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 189979250-1176980



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.031 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 255488233-1268872



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.032 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 458443991-962968



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.033 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 355472229-1239204



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.034 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 204088265-596882



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.034 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 282180127-893274



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.035 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 393035434-953486



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.036 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.047 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 200175442-1167472



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.048 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 277722016-1226189



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.049 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 388958699-1221367



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.049 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214779600-623304



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.050 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 303716044-887380



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.051 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 145304873-758046



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.052 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.063 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 211043451-1192232



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.064 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 299224343-1245614



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.064 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.075 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 456116956-963873



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.077 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236647942-590553



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.077 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 337622456-936189



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.078 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 165594251-738958



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.079 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.090 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 232576858-1266241



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.091 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 332945430-1359233



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.092 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.103 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 257413354-553231



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.104 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 361723180-950913



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.105 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 176832054-736857



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.105 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.116 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 253388728-1269329



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.117 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 357218775-1228059



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.118 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.129 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 278865492-888548



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.130 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 394736180-951384



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.131 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 187292486-732506



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.131 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.143 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 274408443-1223885



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.144 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 390660597-1219295



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.145 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:11:32.156 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 300299872-884864



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.157 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 146927534-759351



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.157 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 197360802-728078



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.158 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.170 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 406073657-506593



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.171 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 295820475-1242797



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.172 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 412411490-969112



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.173 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.184 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 334185945-934655



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.185 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167248172-739678



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.186 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208052937-721817



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.197 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.208 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172072425-918801



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.209 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 329654990-1225009



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.210 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 413380602-945786



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.211 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.221 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 358255541-950771



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.222 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178183898-738189



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.223 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230071239-818111



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.224 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.235 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 417602460-1179045



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.236 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 353761167-1225423



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.237 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 457464510-979481



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.237 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:11:32.248 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 387152087-1211521



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 1/296 [00:01<05:23,  1.09s/it]
Fetching GFS data:  28%|██▊       | 82/296 [00:01<00:02, 79.50it/s]
Fetching GFS data:  34%|███▍      | 101/296 [00:02<00:03, 48.85it/s]
Fetching GFS data:  38%|███▊      | 112/296 [00:02<00:03, 50.06it/s]
Fetching GFS data:  41%|████      | 121/296 [00:02<00:03, 48.17it/s]
Fetching GFS data:  44%|████▎     | 129/296 [00:02<00:03, 50.85it/s]
Fetching GFS data:  46%|████▋     | 137/296 [00:02<00:03, 51.71it/s]
Fetching GFS data:  49%|████▊     | 144/296 [00:03<00:02, 51.39it/s]
Fetching GFS data:  51%|█████▏    | 152/296 [00:03<00:02, 55.83it/s]
Fetching GFS data:  54%|█████▎    | 159/296 [00:03<00:02, 55.11it/s]
Fetching GFS data:  56%|█████▌    | 166/296 [00:03<00:02, 58.22it/s]
Fetching GFS data:  58%|█████▊    | 173/296 [00:03<00:02, 54.96it/s]
Fetching GFS data:  60%|██████    | 179/296 [00:03<00:02, 53.92it/s]
Fetching GFS data:  64%|██████▍   | 189/296 [00:03<00:01, 59.53it/s]
Fetching GFS data:  67%|██████▋   | 198/296 [00:03<00:01, 61.72it/s]
Fetching GFS data:  70%|██████▉   | 207/296 [00:04<00:01, 65.39it/s]
Fetching GFS data:  73%|███████▎  | 215/296 [00:04<00:01, 67.88it/s]
Fetching GFS data:  75%|███████▌  | 222/296 [00:04<00:01, 64.43it/s]
Fetching GFS data:  77%|███████▋  | 229/296 [00:04<00:01, 65.01it/s]
Fetching GFS data:  80%|███████▉  | 236/296 [00:04<00:00, 62.82it/s]
Fetching GFS data:  82%|████████▏ | 243/296 [00:04<00:00, 63.79it/s]
Fetching GFS data:  85%|████████▍ | 251/296 [00:04<00:00, 64.97it/s]
Fetching GFS data:  87%|████████▋ | 258/296 [00:04<00:00, 64.12it/s]
Fetching GFS data:  90%|████████▉ | 265/296 [00:04<00:00, 64.56it/s]
Fetching GFS data:  92%|█████████▏| 272/296 [00:05<00:00, 62.01it/s]
Fetching GFS data:  94%|█████████▍| 279/296 [00:05<00:00, 61.08it/s]
Fetching GFS data:  97%|█████████▋| 286/296 [00:05<00:00, 63.09it/s]
Fetching GFS data: 100%|██████████| 296/296 [00:05<00:00, 45.56it/s]
Fetching GFS data: 100%|██████████| 296/296 [00:05<00:00, 53.12it/s]


Running batch 0 inference:   0%|          | 0/5 [00:00<?, ?it/s]

Running batch 0 inference:  20%|██        | 1/5 [00:00<00:00,  9.96it/s]

Running batch 0 inference:  40%|████      | 2/5 [00:00<00:01,  2.21it/s]

Running batch 0 inference:  60%|██████    | 3/5 [00:01<00:01,  1.77it/s]

Running batch 0 inference:  80%|████████  | 4/5 [00:02<00:00,  1.62it/s]

Running batch 0 inference: 100%|██████████| 5/5 [00:02<00:00,  1.57it/s]




Total Ensemble Batches:  50%|█████     | 1/2 [00:17<00:17, 17.83s/it]

Running batch 1 inference:   0%|          | 0/5 [00:00<?, ?it/s]

Running batch 1 inference:  40%|████      | 2/5 [00:00<00:01,  2.59it/s]

Running batch 1 inference:  60%|██████    | 3/5 [00:01<00:01,  1.96it/s]

Running batch 1 inference:  80%|████████  | 4/5 [00:02<00:00,  1.75it/s]

Running batch 1 inference: 100%|██████████| 5/5 [00:02<00:00,  1.63it/s]




Total Ensemble Batches: 100%|██████████| 2/2 [00:20<00:00,  9.00s/it]
Total Ensemble Batches: 100%|██████████| 2/2 [00:20<00:00, 10.33s/it]
2026-05-18 02:11:51.394 | SUCCESS  | earth2studio.run:ensemble:439 -
Inference complete
/
├── ensemble (2,) int64
├── lat (721,) float64
├── lead_time (5,) timedelta64
├── lon (1440,) float64
├── time (1,) datetime64
├── u10m (2, 1, 5, 721, 1440) float32
└── v10m (2, 1, 5, 721, 1440) float32


Downloading config.json: 0%|          | 0.00/22.4k [00:00<?, ?B/s]
Downloading config.json: 100%|██████████| 22.4k/22.4k [00:00<00:00, 113kB/s]
Downloading config.json: 100%|██████████| 22.4k/22.4k [00:00<00:00, 113kB/s]

Downloading global_means.npy: 0%|          | 0.00/720 [00:00<?, ?B/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 6.27kB/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 6.20kB/s]

Downloading global_stds.npy: 0%|          | 0.00/720 [00:00<?, ?B/s]
Downloading global_stds.npy: 100%|██████████| 720/720 [00:00<00:00, 6.85kB/s]
Downloading global_stds.npy: 100%|██████████| 720/720 [00:00<00:00, 6.75kB/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, 18.5MB/s]
Downloading orography.nc: 100%|██████████| 2.50M/2.50M [00:00<00:00, 18.2MB/s]

Downloading land_mask.nc: 0%|          | 0.00/748k [00:00<?, ?B/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 6.37MB/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 6.29MB/s]

Downloading best_ckpt_mp0.tar: 0%|          | 0.00/8.31G [00:00<?, ?B/s]
Downloading best_ckpt_mp0.tar: 0%|          | 10.0M/8.31G [00:00<04:28, 33.1MB/s]
Downloading best_ckpt_mp0.tar: 0%|          | 20.0M/8.31G [00:00<02:47, 53.2MB/s]
Downloading best_ckpt_mp0.tar: 0%|          | 30.0M/8.31G [00:00<02:10, 67.9MB/s]
Downloading best_ckpt_mp0.tar: 0%|          | 40.0M/8.31G [00:00<01:59, 74.6MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 50.0M/8.31G [00:00<01:50, 80.3MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 60.0M/8.31G [00:00<01:46, 83.3MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 70.0M/8.31G [00:00<01:43, 85.2MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 80.0M/8.31G [00:01<01:41, 86.7MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 90.0M/8.31G [00:01<01:40, 87.9MB/s]
Downloading best_ckpt_mp0.tar: 1%|          | 100M/8.31G [00:01<01:41, 86.9MB/s]
Downloading best_ckpt_mp0.tar: 1%|▏         | 110M/8.31G [00:01<01:38, 89.0MB/s]
Downloading best_ckpt_mp0.tar: 1%|▏         | 120M/8.31G [00:01<01:37, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 130M/8.31G [00:01<01:37, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 140M/8.31G [00:01<01:37, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 150M/8.31G [00:01<01:36, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 160M/8.31G [00:02<01:37, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 170M/8.31G [00:02<01:36, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 180M/8.31G [00:02<01:36, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 190M/8.31G [00:02<01:36, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 200M/8.31G [00:02<01:36, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏         | 210M/8.31G [00:02<01:36, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 220M/8.31G [00:02<01:36, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 230M/8.31G [00:02<01:36, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 240M/8.31G [00:02<01:36, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 250M/8.31G [00:03<01:35, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 260M/8.31G [00:03<01:39, 86.9MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 270M/8.31G [00:03<01:34, 91.3MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 280M/8.31G [00:03<01:34, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎         | 290M/8.31G [00:03<01:35, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 4%|▎         | 300M/8.31G [00:03<01:35, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 4%|▎         | 310M/8.31G [00:03<01:35, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 320M/8.31G [00:03<01:35, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 330M/8.31G [00:04<01:34, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 340M/8.31G [00:04<01:35, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 350M/8.31G [00:04<01:34, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 360M/8.31G [00:04<01:34, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 370M/8.31G [00:04<01:34, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍         | 380M/8.31G [00:04<01:34, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍         | 390M/8.31G [00:04<01:34, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍         | 400M/8.31G [00:04<01:34, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍         | 410M/8.31G [00:04<01:34, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍         | 420M/8.31G [00:05<01:34, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌         | 430M/8.31G [00:05<01:33, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌         | 440M/8.31G [00:05<01:33, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌         | 450M/8.31G [00:05<01:33, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌         | 460M/8.31G [00:05<01:33, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 470M/8.31G [00:05<01:33, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 480M/8.31G [00:05<01:33, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 490M/8.31G [00:05<01:33, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 500M/8.31G [00:06<01:33, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 510M/8.31G [00:06<01:32, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 520M/8.31G [00:06<01:32, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌         | 530M/8.31G [00:06<01:32, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 6%|▋         | 540M/8.31G [00:06<01:32, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 6%|▋         | 550M/8.31G [00:06<01:32, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 560M/8.31G [00:06<01:32, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 570M/8.31G [00:06<01:32, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 580M/8.31G [00:06<01:32, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 590M/8.31G [00:07<01:31, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 600M/8.31G [00:07<01:31, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 610M/8.31G [00:07<01:31, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 620M/8.31G [00:07<01:31, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋         | 630M/8.31G [00:07<01:31, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 640M/8.31G [00:07<01:31, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 650M/8.31G [00:07<01:31, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 660M/8.31G [00:07<01:31, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 670M/8.31G [00:07<01:31, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 680M/8.31G [00:08<01:31, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 690M/8.31G [00:08<01:31, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 700M/8.31G [00:08<01:31, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 710M/8.31G [00:08<01:30, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊         | 720M/8.31G [00:08<01:30, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 9%|▊         | 730M/8.31G [00:08<01:30, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 9%|▊         | 740M/8.31G [00:08<01:30, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 750M/8.31G [00:08<01:30, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 760M/8.31G [00:09<01:30, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 770M/8.31G [00:09<01:29, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 780M/8.31G [00:09<01:30, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 790M/8.31G [00:09<01:29, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉         | 800M/8.31G [00:09<01:29, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉         | 810M/8.31G [00:09<01:32, 87.5MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉         | 820M/8.31G [00:09<01:28, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉         | 830M/8.31G [00:09<01:28, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉         | 840M/8.31G [00:09<01:28, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉         | 850M/8.31G [00:10<01:28, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 10%|█         | 860M/8.31G [00:10<01:28, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 10%|█         | 870M/8.31G [00:10<01:59, 66.9MB/s]
Downloading best_ckpt_mp0.tar: 10%|█         | 890M/8.31G [00:10<01:34, 84.2MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 910M/8.31G [00:10<01:40, 79.4MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 920M/8.31G [00:11<02:07, 62.5MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 930M/8.31G [00:11<02:19, 57.0MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 940M/8.31G [00:11<02:37, 50.3MB/s]
Downloading best_ckpt_mp0.tar: 11%|█         | 950M/8.31G [00:11<02:42, 48.6MB/s]
Downloading best_ckpt_mp0.tar: 11%|█▏        | 970M/8.31G [00:12<02:13, 59.4MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 980M/8.31G [00:12<02:05, 63.1MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 0.98G/8.31G [00:12<01:31, 86.3MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 1.00G/8.31G [00:12<01:16, 102MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 1.02G/8.31G [00:12<01:13, 107MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏        | 1.04G/8.31G [00:12<01:05, 120MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎        | 1.05G/8.31G [00:13<01:08, 114MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎        | 1.07G/8.31G [00:13<01:13, 105MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎        | 1.09G/8.31G [00:13<01:17, 100MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎        | 1.11G/8.31G [00:13<01:19, 97.0MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▎        | 1.12G/8.31G [00:13<01:20, 95.6MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▎        | 1.13G/8.31G [00:14<01:21, 94.6MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.14G/8.31G [00:14<01:22, 93.5MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.15G/8.31G [00:14<01:22, 92.7MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.16G/8.31G [00:14<01:23, 92.1MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.17G/8.31G [00:14<01:23, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.18G/8.31G [00:14<01:23, 91.3MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.19G/8.31G [00:14<01:24, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍        | 1.20G/8.31G [00:14<01:24, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍        | 1.21G/8.31G [00:14<01:24, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍        | 1.22G/8.31G [00:15<01:24, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍        | 1.23G/8.31G [00:15<01:24, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍        | 1.24G/8.31G [00:15<01:24, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌        | 1.25G/8.31G [00:15<01:24, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌        | 1.26G/8.31G [00:15<01:23, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌        | 1.27G/8.31G [00:15<01:23, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌        | 1.28G/8.31G [00:16<02:24, 52.1MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.29G/8.31G [00:16<02:06, 59.6MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.30G/8.31G [00:16<01:53, 66.4MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.31G/8.31G [00:16<01:44, 71.9MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.32G/8.31G [00:16<01:38, 76.6MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.33G/8.31G [00:16<01:33, 80.1MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌        | 1.34G/8.31G [00:16<02:00, 61.9MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▋        | 1.37G/8.31G [00:17<01:20, 93.0MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.38G/8.31G [00:17<01:20, 92.3MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.39G/8.31G [00:17<01:20, 91.9MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.40G/8.31G [00:17<01:21, 91.4MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.41G/8.31G [00:17<01:21, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.42G/8.31G [00:17<01:21, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.43G/8.31G [00:17<01:21, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.44G/8.31G [00:17<01:21, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋        | 1.45G/8.31G [00:18<01:22, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.46G/8.31G [00:18<01:21, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.46G/8.31G [00:18<01:21, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.47G/8.31G [00:18<01:21, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.48G/8.31G [00:18<01:21, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.49G/8.31G [00:18<01:21, 89.6MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.50G/8.31G [00:18<01:21, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.51G/8.31G [00:18<01:20, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.52G/8.31G [00:18<01:20, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊        | 1.53G/8.31G [00:19<01:20, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▊        | 1.54G/8.31G [00:19<01:21, 89.1MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▊        | 1.55G/8.31G [00:19<01:19, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.56G/8.31G [00:19<01:20, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.57G/8.31G [00:19<01:20, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.58G/8.31G [00:19<01:20, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.59G/8.31G [00:19<01:19, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.60G/8.31G [00:19<01:19, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉        | 1.61G/8.31G [00:20<01:19, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.62G/8.31G [00:20<01:19, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.63G/8.31G [00:20<01:19, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.64G/8.31G [00:20<01:19, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.65G/8.31G [00:20<01:19, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉        | 1.66G/8.31G [00:20<01:19, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 20%|██        | 1.67G/8.31G [00:20<01:19, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 20%|██        | 1.68G/8.31G [00:20<01:20, 88.9MB/s]
Downloading best_ckpt_mp0.tar: 20%|██        | 1.69G/8.31G [00:20<01:18, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 20%|██        | 1.70G/8.31G [00:21<01:18, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.71G/8.31G [00:21<01:18, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.72G/8.31G [00:21<01:18, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.73G/8.31G [00:21<01:17, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.74G/8.31G [00:21<01:19, 88.5MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.75G/8.31G [00:21<01:17, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 21%|██        | 1.76G/8.31G [00:21<01:17, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 21%|██▏       | 1.77G/8.31G [00:21<01:17, 91.0MB/s]
Downloading best_ckpt_mp0.tar: 21%|██▏       | 1.78G/8.31G [00:21<01:17, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.79G/8.31G [00:22<01:17, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.80G/8.31G [00:22<01:17, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.81G/8.31G [00:22<01:17, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.82G/8.31G [00:22<01:17, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.83G/8.31G [00:22<01:17, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.84G/8.31G [00:22<01:16, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.85G/8.31G [00:22<01:16, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.86G/8.31G [00:22<01:30, 76.6MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏       | 1.87G/8.31G [00:23<01:30, 76.1MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.88G/8.31G [00:23<01:13, 94.5MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.89G/8.31G [00:23<01:37, 70.8MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.90G/8.31G [00:23<01:48, 63.1MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.91G/8.31G [00:23<01:53, 60.5MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎       | 1.92G/8.31G [00:24<01:43, 66.1MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▎       | 1.96G/8.31G [00:24<00:56, 120MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍       | 1.98G/8.31G [00:24<01:12, 93.3MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍       | 2.00G/8.31G [00:24<01:17, 87.7MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍       | 2.01G/8.31G [00:24<01:20, 84.4MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍       | 2.03G/8.31G [00:25<01:10, 95.2MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍       | 2.04G/8.31G [00:25<01:21, 83.0MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍       | 2.06G/8.31G [00:25<01:12, 92.1MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌       | 2.08G/8.31G [00:25<01:04, 104MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌       | 2.10G/8.31G [00:25<00:56, 118MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌       | 2.12G/8.31G [00:26<01:01, 107MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌       | 2.14G/8.31G [00:26<01:05, 101MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌       | 2.16G/8.31G [00:26<01:07, 97.7MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌       | 2.17G/8.31G [00:26<01:08, 96.2MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌       | 2.18G/8.31G [00:26<01:09, 94.9MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▋       | 2.19G/8.31G [00:26<01:10, 93.6MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▋       | 2.20G/8.31G [00:26<01:10, 92.8MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.21G/8.31G [00:27<01:11, 91.9MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.22G/8.31G [00:27<01:11, 91.6MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.23G/8.31G [00:27<01:11, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.24G/8.31G [00:27<01:11, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.25G/8.31G [00:27<01:11, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.26G/8.31G [00:27<01:11, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.27G/8.31G [00:27<01:12, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋       | 2.28G/8.31G [00:27<01:11, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.29G/8.31G [00:28<01:11, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.29G/8.31G [00:28<01:11, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.30G/8.31G [00:28<01:37, 66.0MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.33G/8.31G [00:28<01:06, 97.0MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.34G/8.31G [00:28<01:07, 95.4MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.35G/8.31G [00:28<01:07, 94.1MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊       | 2.36G/8.31G [00:28<01:08, 93.2MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▊       | 2.37G/8.31G [00:29<01:08, 92.5MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▊       | 2.38G/8.31G [00:29<01:09, 91.8MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.39G/8.31G [00:29<01:09, 91.2MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.40G/8.31G [00:29<01:09, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.41G/8.31G [00:29<01:09, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.42G/8.31G [00:29<01:09, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.43G/8.31G [00:29<01:10, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.44G/8.31G [00:29<01:09, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉       | 2.45G/8.31G [00:30<01:09, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉       | 2.46G/8.31G [00:30<01:09, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉       | 2.47G/8.31G [00:30<01:09, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉       | 2.48G/8.31G [00:30<01:09, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉       | 2.49G/8.31G [00:30<01:09, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 30%|███       | 2.50G/8.31G [00:30<01:09, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 30%|███       | 2.51G/8.31G [00:30<01:09, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 30%|███       | 2.52G/8.31G [00:30<01:08, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 30%|███       | 2.53G/8.31G [00:30<01:08, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.54G/8.31G [00:31<01:08, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.55G/8.31G [00:31<01:08, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.56G/8.31G [00:31<01:08, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.57G/8.31G [00:31<01:08, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.58G/8.31G [00:31<01:08, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 31%|███       | 2.59G/8.31G [00:31<01:08, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 31%|███▏      | 2.60G/8.31G [00:31<01:11, 86.3MB/s]
Downloading best_ckpt_mp0.tar: 31%|███▏      | 2.61G/8.31G [00:32<02:04, 49.2MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.63G/8.31G [00:32<01:32, 66.0MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.64G/8.31G [00:32<01:25, 70.9MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.65G/8.31G [00:32<01:20, 75.2MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.66G/8.31G [00:32<01:17, 78.7MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.67G/8.31G [00:32<01:14, 81.7MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.68G/8.31G [00:32<01:12, 83.8MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.69G/8.31G [00:33<01:10, 85.6MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏      | 2.70G/8.31G [00:33<01:09, 86.6MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.71G/8.31G [00:33<01:08, 87.6MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.71G/8.31G [00:33<01:07, 88.6MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.72G/8.31G [00:33<01:07, 89.1MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.73G/8.31G [00:33<01:08, 87.0MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.74G/8.31G [00:33<01:06, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.75G/8.31G [00:33<01:06, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.76G/8.31G [00:34<01:05, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.77G/8.31G [00:34<01:05, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎      | 2.78G/8.31G [00:34<01:05, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▎      | 2.79G/8.31G [00:34<01:05, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▎      | 2.80G/8.31G [00:34<01:05, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.81G/8.31G [00:34<01:05, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.82G/8.31G [00:34<01:05, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.83G/8.31G [00:34<01:05, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.84G/8.31G [00:34<01:05, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.85G/8.31G [00:35<01:05, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍      | 2.86G/8.31G [00:35<01:05, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍      | 2.87G/8.31G [00:35<01:04, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍      | 2.88G/8.31G [00:35<01:04, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍      | 2.89G/8.31G [00:35<01:04, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍      | 2.90G/8.31G [00:35<01:04, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌      | 2.91G/8.31G [00:35<01:11, 81.4MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌      | 2.92G/8.31G [00:35<01:08, 84.9MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌      | 2.94G/8.31G [00:36<01:01, 93.8MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌      | 2.95G/8.31G [00:36<01:12, 78.9MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌      | 2.97G/8.31G [00:36<01:10, 81.8MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌      | 2.99G/8.31G [00:36<01:07, 84.1MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌      | 3.00G/8.31G [00:36<01:11, 79.5MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▋      | 3.02G/8.31G [00:37<00:55, 102MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.04G/8.31G [00:37<00:59, 94.5MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.05G/8.31G [00:37<01:12, 78.2MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.06G/8.31G [00:37<01:15, 74.5MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.08G/8.31G [00:37<00:57, 97.4MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.10G/8.31G [00:37<00:52, 107MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋      | 3.12G/8.31G [00:38<00:55, 101MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.13G/8.31G [00:38<00:57, 96.9MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.14G/8.31G [00:38<00:58, 95.5MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.15G/8.31G [00:38<00:58, 93.8MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.16G/8.31G [00:38<00:59, 93.6MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.17G/8.31G [00:38<00:59, 92.6MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊      | 3.18G/8.31G [00:39<01:20, 68.6MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▊      | 3.21G/8.31G [00:39<00:55, 97.7MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.22G/8.31G [00:39<00:56, 96.1MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.23G/8.31G [00:39<00:57, 94.8MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.24G/8.31G [00:39<00:58, 92.5MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.25G/8.31G [00:39<00:58, 92.9MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.26G/8.31G [00:39<00:58, 92.1MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.27G/8.31G [00:40<00:59, 91.2MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉      | 3.28G/8.31G [00:40<00:59, 91.4MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉      | 3.29G/8.31G [00:40<00:59, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉      | 3.30G/8.31G [00:40<00:59, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉      | 3.31G/8.31G [00:40<00:59, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉      | 3.32G/8.31G [00:40<00:59, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 40%|████      | 3.33G/8.31G [00:40<00:58, 91.0MB/s]
Downloading best_ckpt_mp0.tar: 40%|████      | 3.34G/8.31G [00:40<00:58, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 40%|████      | 3.35G/8.31G [00:40<00:58, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 40%|████      | 3.36G/8.31G [00:41<00:58, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.37G/8.31G [00:41<00:58, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.38G/8.31G [00:41<00:58, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.39G/8.31G [00:41<00:58, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.40G/8.31G [00:41<00:58, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.41G/8.31G [00:41<00:58, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 41%|████      | 3.42G/8.31G [00:41<00:58, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏     | 3.43G/8.31G [00:41<00:58, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏     | 3.44G/8.31G [00:42<00:58, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏     | 3.45G/8.31G [00:42<00:57, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.46G/8.31G [00:42<00:57, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.47G/8.31G [00:42<00:57, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.48G/8.31G [00:42<00:57, 89.6MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.49G/8.31G [00:42<00:57, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.50G/8.31G [00:42<00:57, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.51G/8.31G [00:42<00:57, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.52G/8.31G [00:42<00:57, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏     | 3.53G/8.31G [00:43<00:56, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.54G/8.31G [00:43<00:56, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.54G/8.31G [00:43<00:56, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.55G/8.31G [00:43<00:56, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.56G/8.31G [00:43<00:56, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.57G/8.31G [00:43<00:56, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.58G/8.31G [00:43<00:56, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.59G/8.31G [00:43<00:56, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.60G/8.31G [00:44<00:55, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎     | 3.61G/8.31G [00:44<00:55, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▎     | 3.62G/8.31G [00:44<00:55, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▎     | 3.63G/8.31G [00:44<00:55, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.64G/8.31G [00:44<00:55, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.65G/8.31G [00:44<00:55, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.66G/8.31G [00:44<00:55, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.67G/8.31G [00:44<00:55, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.68G/8.31G [00:44<00:55, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍     | 3.69G/8.31G [00:45<00:54, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍     | 3.70G/8.31G [00:45<00:54, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍     | 3.71G/8.31G [00:45<00:54, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍     | 3.72G/8.31G [00:45<01:34, 52.1MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍     | 3.73G/8.31G [00:45<01:22, 59.6MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌     | 3.74G/8.31G [00:45<01:13, 66.3MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌     | 3.75G/8.31G [00:46<01:07, 72.1MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌     | 3.76G/8.31G [00:46<01:03, 76.8MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌     | 3.77G/8.31G [00:46<01:01, 79.8MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌     | 3.78G/8.31G [00:46<00:58, 83.1MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.79G/8.31G [00:46<00:57, 84.9MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.80G/8.31G [00:46<00:55, 86.6MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.81G/8.31G [00:46<00:55, 87.7MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.82G/8.31G [00:46<00:54, 88.5MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.83G/8.31G [00:46<00:54, 89.1MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌     | 3.84G/8.31G [00:47<00:53, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▋     | 3.85G/8.31G [00:47<00:53, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▋     | 3.86G/8.31G [00:47<00:53, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.87G/8.31G [00:47<00:53, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.88G/8.31G [00:47<00:53, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.89G/8.31G [00:47<00:53, 88.6MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.90G/8.31G [00:47<00:52, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.91G/8.31G [00:47<00:58, 81.0MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.93G/8.31G [00:48<00:54, 86.8MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.94G/8.31G [00:48<00:52, 89.2MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋     | 3.95G/8.31G [00:48<00:51, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 3.96G/8.31G [00:48<00:53, 87.7MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 3.97G/8.31G [00:48<01:00, 76.9MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 3.98G/8.31G [00:49<01:05, 71.0MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 3.99G/8.31G [00:49<01:05, 71.2MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊     | 4.00G/8.31G [00:49<01:09, 66.5MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▊     | 4.03G/8.31G [00:49<00:40, 114MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉     | 4.05G/8.31G [00:49<00:41, 111MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉     | 4.07G/8.31G [00:49<00:44, 103MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉     | 4.09G/8.31G [00:50<00:45, 98.6MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉     | 4.11G/8.31G [00:50<00:47, 95.8MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉     | 4.12G/8.31G [00:50<00:47, 94.6MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉     | 4.13G/8.31G [00:50<00:47, 93.7MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉     | 4.14G/8.31G [00:50<00:48, 92.9MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉     | 4.15G/8.31G [00:50<00:48, 92.0MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████     | 4.16G/8.31G [00:50<00:48, 91.8MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████     | 4.17G/8.31G [00:51<00:48, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████     | 4.18G/8.31G [00:51<00:48, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████     | 4.19G/8.31G [00:51<00:48, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.20G/8.31G [00:51<00:48, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.21G/8.31G [00:51<00:48, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.22G/8.31G [00:51<00:48, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.23G/8.31G [00:51<00:48, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.24G/8.31G [00:51<00:48, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.25G/8.31G [00:51<00:48, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████     | 4.26G/8.31G [00:52<00:48, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████▏    | 4.27G/8.31G [00:52<00:48, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████▏    | 4.28G/8.31G [00:52<00:47, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.29G/8.31G [00:52<00:47, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.30G/8.31G [00:52<00:47, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.31G/8.31G [00:52<00:47, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.32G/8.31G [00:52<00:47, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.33G/8.31G [00:52<00:47, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.34G/8.31G [00:53<00:47, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.35G/8.31G [00:53<00:47, 89.4MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏    | 4.36G/8.31G [00:53<00:47, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.37G/8.31G [00:53<00:47, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.38G/8.31G [00:53<00:46, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.38G/8.31G [00:53<00:46, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.39G/8.31G [00:53<00:46, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.40G/8.31G [00:54<01:10, 59.1MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.42G/8.31G [00:54<00:48, 86.7MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎    | 4.44G/8.31G [00:54<00:41, 99.9MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▎    | 4.46G/8.31G [00:54<00:42, 96.1MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍    | 4.48G/8.31G [00:54<00:43, 93.9MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍    | 4.49G/8.31G [00:54<00:43, 93.5MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍    | 4.50G/8.31G [00:55<00:44, 92.6MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍    | 4.51G/8.31G [00:55<00:44, 92.2MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍    | 4.52G/8.31G [00:55<00:44, 91.6MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍    | 4.53G/8.31G [00:55<00:44, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍    | 4.54G/8.31G [00:55<00:44, 91.0MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍    | 4.55G/8.31G [00:55<00:44, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍    | 4.56G/8.31G [00:55<00:44, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌    | 4.57G/8.31G [00:55<00:44, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌    | 4.58G/8.31G [00:55<00:44, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌    | 4.59G/8.31G [00:56<00:44, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌    | 4.60G/8.31G [00:56<00:43, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌    | 4.61G/8.31G [00:56<00:44, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.62G/8.31G [00:56<00:44, 89.6MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.63G/8.31G [00:56<00:44, 88.7MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.64G/8.31G [00:56<00:43, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.65G/8.31G [00:56<00:43, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.66G/8.31G [00:56<00:43, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌    | 4.67G/8.31G [00:56<00:44, 88.2MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▋    | 4.68G/8.31G [00:57<00:42, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▋    | 4.69G/8.31G [00:57<00:42, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.70G/8.31G [00:57<00:42, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.71G/8.31G [00:57<00:42, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.72G/8.31G [00:57<00:42, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.73G/8.31G [00:57<00:42, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.74G/8.31G [00:57<00:42, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.75G/8.31G [00:57<00:42, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.76G/8.31G [00:58<00:42, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.77G/8.31G [00:58<00:42, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋    | 4.78G/8.31G [00:58<00:42, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.79G/8.31G [00:58<00:42, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.79G/8.31G [00:58<00:41, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.80G/8.31G [00:58<00:41, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.81G/8.31G [00:58<00:41, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.82G/8.31G [00:58<00:41, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.83G/8.31G [00:58<00:41, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.84G/8.31G [00:59<00:41, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊    | 4.85G/8.31G [00:59<00:41, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▊    | 4.86G/8.31G [00:59<00:41, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▊    | 4.87G/8.31G [00:59<00:45, 81.1MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.89G/8.31G [00:59<00:43, 85.2MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.90G/8.31G [00:59<00:46, 78.3MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.91G/8.31G [01:00<00:52, 69.4MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.92G/8.31G [01:00<00:48, 74.6MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉    | 4.94G/8.31G [01:00<00:48, 74.6MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉    | 4.95G/8.31G [01:00<00:52, 68.6MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉    | 4.96G/8.31G [01:00<00:51, 70.3MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉    | 4.97G/8.31G [01:00<00:49, 72.4MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉    | 4.98G/8.31G [01:01<00:48, 74.1MB/s]
Downloading best_ckpt_mp0.tar: 60%|██████    | 5.01G/8.31G [01:01<00:28, 123MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████    | 5.03G/8.31G [01:01<00:25, 137MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████    | 5.05G/8.31G [01:01<00:45, 77.2MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████    | 5.07G/8.31G [01:02<00:43, 80.9MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████    | 5.09G/8.31G [01:02<00:41, 83.6MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████▏   | 5.10G/8.31G [01:02<00:40, 84.7MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████▏   | 5.11G/8.31G [01:02<00:40, 85.9MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.12G/8.31G [01:02<00:39, 86.0MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.13G/8.31G [01:02<00:38, 88.0MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.14G/8.31G [01:02<00:38, 88.3MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.15G/8.31G [01:02<00:38, 89.0MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.16G/8.31G [01:03<00:38, 89.0MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.17G/8.31G [01:03<00:37, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.18G/8.31G [01:03<00:38, 86.5MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏   | 5.19G/8.31G [01:03<00:36, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.20G/8.31G [01:03<00:39, 83.8MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.21G/8.31G [01:03<00:36, 92.1MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.22G/8.31G [01:03<00:36, 91.7MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.23G/8.31G [01:04<00:36, 91.3MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.24G/8.31G [01:04<00:36, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.25G/8.31G [01:04<00:40, 81.7MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎   | 5.26G/8.31G [01:04<00:53, 60.7MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▎   | 5.28G/8.31G [01:04<00:36, 88.8MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍   | 5.30G/8.31G [01:04<00:31, 103MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍   | 5.32G/8.31G [01:05<00:32, 98.1MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍   | 5.34G/8.31G [01:05<00:33, 95.4MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍   | 5.35G/8.31G [01:05<00:33, 94.2MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍   | 5.36G/8.31G [01:05<00:33, 93.5MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍   | 5.37G/8.31G [01:05<00:34, 92.6MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍   | 5.38G/8.31G [01:05<00:34, 92.2MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍   | 5.39G/8.31G [01:05<00:34, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍   | 5.40G/8.31G [01:05<00:34, 91.2MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌   | 5.41G/8.31G [01:06<00:34, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌   | 5.42G/8.31G [01:06<00:34, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌   | 5.43G/8.31G [01:06<00:34, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌   | 5.44G/8.31G [01:06<00:34, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.45G/8.31G [01:06<00:35, 87.0MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.46G/8.31G [01:06<00:33, 91.4MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.47G/8.31G [01:06<00:33, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.48G/8.31G [01:06<00:33, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.49G/8.31G [01:07<00:33, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌   | 5.50G/8.31G [01:07<00:33, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▋   | 5.51G/8.31G [01:07<00:33, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▋   | 5.52G/8.31G [01:07<00:49, 60.6MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.54G/8.31G [01:07<00:36, 81.7MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.55G/8.31G [01:07<00:34, 85.6MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.57G/8.31G [01:07<00:27, 105MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.59G/8.31G [01:08<00:29, 99.1MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋   | 5.61G/8.31G [01:08<00:30, 95.8MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.62G/8.31G [01:08<00:30, 94.7MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.62G/8.31G [01:08<00:30, 93.7MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.63G/8.31G [01:08<00:31, 92.4MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.64G/8.31G [01:08<00:31, 91.4MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.65G/8.31G [01:09<00:31, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.66G/8.31G [01:09<00:31, 91.4MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.67G/8.31G [01:09<00:31, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊   | 5.68G/8.31G [01:09<00:31, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▊   | 5.69G/8.31G [01:09<00:31, 89.4MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▊   | 5.70G/8.31G [01:09<00:30, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.71G/8.31G [01:09<00:31, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.72G/8.31G [01:09<00:30, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.73G/8.31G [01:09<00:30, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.74G/8.31G [01:10<00:30, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.75G/8.31G [01:10<00:30, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.76G/8.31G [01:10<00:30, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉   | 5.77G/8.31G [01:10<00:30, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉   | 5.78G/8.31G [01:10<00:30, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉   | 5.79G/8.31G [01:10<00:29, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉   | 5.80G/8.31G [01:10<00:29, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉   | 5.81G/8.31G [01:10<00:29, 89.9MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████   | 5.82G/8.31G [01:11<00:29, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████   | 5.83G/8.31G [01:11<00:29, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████   | 5.84G/8.31G [01:11<00:34, 77.8MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████   | 5.85G/8.31G [01:11<00:35, 73.7MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.86G/8.31G [01:11<00:42, 62.5MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.88G/8.31G [01:11<00:30, 84.3MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.89G/8.31G [01:11<00:33, 78.7MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.90G/8.31G [01:12<00:38, 67.5MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.91G/8.31G [01:12<00:45, 56.5MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████   | 5.92G/8.31G [01:12<00:45, 56.4MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████▏  | 5.93G/8.31G [01:12<00:43, 58.9MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏  | 5.95G/8.31G [01:12<00:30, 82.2MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏  | 5.99G/8.31G [01:13<00:17, 144MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏  | 6.01G/8.31G [01:13<00:18, 133MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.03G/8.31G [01:13<00:21, 117MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.04G/8.31G [01:13<00:22, 107MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.06G/8.31G [01:13<00:23, 102MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.08G/8.31G [01:14<00:25, 93.5MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎  | 6.10G/8.31G [01:14<00:24, 97.0MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▎  | 6.11G/8.31G [01:14<00:24, 95.5MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▎  | 6.12G/8.31G [01:14<00:24, 94.7MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍  | 6.13G/8.31G [01:14<00:33, 70.2MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍  | 6.15G/8.31G [01:15<00:24, 93.1MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍  | 6.17G/8.31G [01:15<00:23, 98.7MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍  | 6.19G/8.31G [01:15<00:23, 95.4MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍  | 6.21G/8.31G [01:15<00:24, 93.3MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍  | 6.22G/8.31G [01:15<00:24, 92.8MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍  | 6.23G/8.31G [01:16<00:36, 60.6MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌  | 6.24G/8.31G [01:16<00:33, 65.6MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌  | 6.25G/8.31G [01:16<00:31, 70.2MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌  | 6.26G/8.31G [01:16<00:29, 74.6MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌  | 6.27G/8.31G [01:16<00:27, 78.3MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.28G/8.31G [01:16<00:26, 81.7MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.29G/8.31G [01:16<00:26, 83.0MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.30G/8.31G [01:17<00:25, 84.6MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.31G/8.31G [01:17<00:25, 83.0MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.32G/8.31G [01:17<00:24, 88.2MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌  | 6.33G/8.31G [01:17<00:25, 82.7MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▋  | 6.35G/8.31G [01:17<00:26, 78.8MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.37G/8.31G [01:17<00:23, 87.0MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.38G/8.31G [01:18<00:23, 88.0MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.39G/8.31G [01:18<00:27, 76.1MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.40G/8.31G [01:18<00:25, 80.8MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.42G/8.31G [01:18<00:20, 96.8MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.43G/8.31G [01:18<00:21, 92.3MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋  | 6.44G/8.31G [01:18<00:30, 66.4MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊  | 6.46G/8.31G [01:19<00:25, 78.8MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊  | 6.46G/8.31G [01:19<00:25, 76.9MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊  | 6.48G/8.31G [01:19<00:19, 98.5MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊  | 6.50G/8.31G [01:19<00:22, 87.9MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▊  | 6.52G/8.31G [01:19<00:18, 106MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▊  | 6.54G/8.31G [01:19<00:17, 110MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉  | 6.56G/8.31G [01:20<00:18, 101MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉  | 6.58G/8.31G [01:20<00:19, 96.7MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉  | 6.59G/8.31G [01:20<00:19, 96.6MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉  | 6.60G/8.31G [01:20<00:20, 87.7MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉  | 6.62G/8.31G [01:20<00:18, 96.3MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉  | 6.63G/8.31G [01:21<00:19, 92.1MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████  | 6.65G/8.31G [01:21<00:18, 94.6MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████  | 6.66G/8.31G [01:21<00:18, 93.6MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████  | 6.67G/8.31G [01:21<00:18, 92.9MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████  | 6.68G/8.31G [01:21<00:19, 91.7MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.69G/8.31G [01:21<00:19, 89.3MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.70G/8.31G [01:21<00:19, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.71G/8.31G [01:21<00:18, 92.3MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.72G/8.31G [01:22<00:18, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.73G/8.31G [01:22<00:18, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.74G/8.31G [01:22<00:19, 88.3MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████  | 6.75G/8.31G [01:22<00:18, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████▏ | 6.76G/8.31G [01:22<00:18, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████▏ | 6.77G/8.31G [01:22<00:20, 81.6MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.79G/8.31G [01:22<00:17, 93.2MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.80G/8.31G [01:23<00:19, 82.5MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.81G/8.31G [01:23<00:22, 72.5MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.83G/8.31G [01:23<00:19, 80.1MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.85G/8.31G [01:23<00:17, 87.4MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.87G/8.31G [01:23<00:15, 101MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.88G/8.31G [01:23<00:17, 89.7MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.88G/8.31G [01:24<00:18, 81.7MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.90G/8.31G [01:24<00:21, 68.7MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.91G/8.31G [01:24<00:23, 63.3MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.92G/8.31G [01:24<00:25, 59.2MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.93G/8.31G [01:25<00:23, 62.5MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▎ | 6.94G/8.31G [01:25<00:26, 55.2MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 6.97G/8.31G [01:25<00:14, 95.7MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 7.00G/8.31G [01:25<00:11, 125MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.03G/8.31G [01:25<00:09, 137MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.05G/8.31G [01:26<00:11, 113MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.07G/8.31G [01:26<00:12, 104MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.09G/8.31G [01:26<00:13, 100MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.11G/8.31G [01:26<00:13, 96.5MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.12G/8.31G [01:26<00:13, 95.9MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.13G/8.31G [01:27<00:13, 94.2MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.14G/8.31G [01:27<00:13, 93.3MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.15G/8.31G [01:27<00:13, 92.7MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.16G/8.31G [01:27<00:13, 91.8MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▋ | 7.17G/8.31G [01:27<00:13, 91.3MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▋ | 7.18G/8.31G [01:27<00:13, 91.1MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.19G/8.31G [01:27<00:13, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.20G/8.31G [01:27<00:13, 91.0MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.21G/8.31G [01:27<00:13, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.22G/8.31G [01:28<00:13, 86.4MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.24G/8.31G [01:28<00:12, 91.7MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.25G/8.31G [01:28<00:12, 91.4MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.26G/8.31G [01:28<00:12, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.27G/8.31G [01:28<00:12, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.28G/8.31G [01:28<00:12, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.29G/8.31G [01:28<00:12, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.29G/8.31G [01:28<00:12, 90.7MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.30G/8.31G [01:29<00:11, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.31G/8.31G [01:29<00:11, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.32G/8.31G [01:29<00:11, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.33G/8.31G [01:29<00:11, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.34G/8.31G [01:29<00:11, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.35G/8.31G [01:29<00:11, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▊ | 7.36G/8.31G [01:29<00:11, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▊ | 7.37G/8.31G [01:29<00:11, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.38G/8.31G [01:30<00:11, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.39G/8.31G [01:30<00:10, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.40G/8.31G [01:30<00:10, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.41G/8.31G [01:30<00:10, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.42G/8.31G [01:30<00:10, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.43G/8.31G [01:30<00:10, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.44G/8.31G [01:30<00:10, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.45G/8.31G [01:30<00:10, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.46G/8.31G [01:30<00:10, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.47G/8.31G [01:31<00:09, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.48G/8.31G [01:31<00:09, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.49G/8.31G [01:31<00:09, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.50G/8.31G [01:31<00:09, 88.4MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.51G/8.31G [01:31<00:09, 90.9MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.52G/8.31G [01:31<00:09, 89.4MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.53G/8.31G [01:31<00:09, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.54G/8.31G [01:31<00:09, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.55G/8.31G [01:32<00:09, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.56G/8.31G [01:32<00:08, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.57G/8.31G [01:32<00:09, 88.3MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.58G/8.31G [01:32<00:11, 65.8MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.61G/8.31G [01:32<00:07, 97.4MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.62G/8.31G [01:32<00:07, 95.6MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.63G/8.31G [01:32<00:07, 94.2MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.64G/8.31G [01:33<00:07, 93.1MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.65G/8.31G [01:33<00:07, 92.7MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.66G/8.31G [01:33<00:07, 91.8MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.67G/8.31G [01:33<00:07, 91.5MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.68G/8.31G [01:33<00:07, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.69G/8.31G [01:33<00:07, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.70G/8.31G [01:33<00:07, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.71G/8.31G [01:33<00:07, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.71G/8.31G [01:33<00:07, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.72G/8.31G [01:34<00:06, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.73G/8.31G [01:34<00:06, 90.0MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.74G/8.31G [01:34<00:06, 89.6MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.75G/8.31G [01:34<00:06, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.76G/8.31G [01:34<00:06, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▎| 7.77G/8.31G [01:34<00:06, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▎| 7.78G/8.31G [01:34<00:06, 89.3MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.79G/8.31G [01:34<00:06, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.80G/8.31G [01:35<00:05, 90.6MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.81G/8.31G [01:35<00:05, 89.8MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.82G/8.31G [01:35<00:05, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.83G/8.31G [01:35<00:07, 72.2MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.84G/8.31G [01:35<00:06, 75.6MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.86G/8.31G [01:35<00:06, 79.0MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.88G/8.31G [01:36<00:05, 88.0MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.89G/8.31G [01:36<00:05, 75.9MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.90G/8.31G [01:36<00:07, 60.8MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.91G/8.31G [01:36<00:06, 67.0MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.93G/8.31G [01:36<00:05, 73.8MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.94G/8.31G [01:37<00:06, 62.1MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.95G/8.31G [01:37<00:07, 53.7MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.96G/8.31G [01:37<00:06, 60.0MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.98G/8.31G [01:37<00:04, 75.9MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.99G/8.31G [01:37<00:04, 78.5MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▋| 8.02G/8.31G [01:37<00:02, 126MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.04G/8.31G [01:38<00:02, 125MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.06G/8.31G [01:38<00:02, 112MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.08G/8.31G [01:38<00:02, 104MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.10G/8.31G [01:38<00:02, 99.2MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.12G/8.31G [01:39<00:02, 96.4MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.12G/8.31G [01:39<00:02, 94.9MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.13G/8.31G [01:39<00:01, 94.2MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.14G/8.31G [01:39<00:01, 93.2MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.15G/8.31G [01:39<00:01, 92.5MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.16G/8.31G [01:39<00:01, 91.9MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.17G/8.31G [01:39<00:01, 91.3MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.18G/8.31G [01:39<00:01, 91.0MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▊| 8.19G/8.31G [01:39<00:01, 90.8MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▊| 8.20G/8.31G [01:40<00:01, 90.5MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.21G/8.31G [01:40<00:01, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.22G/8.31G [01:40<00:01, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.23G/8.31G [01:40<00:00, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.24G/8.31G [01:40<00:00, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.25G/8.31G [01:40<00:00, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.26G/8.31G [01:40<00:00, 90.2MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.27G/8.31G [01:40<00:00, 89.5MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.28G/8.31G [01:41<00:00, 90.4MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.29G/8.31G [01:41<00:00, 90.3MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.30G/8.31G [01:41<00:00, 90.1MB/s]
Downloading best_ckpt_mp0.tar: 100%|██████████| 8.31G/8.31G [01:41<00:00, 88.0MB/s]
2026-05-18 02:13:55.844 | INFO     | earth2studio.run:ensemble:328 - Running ensemble inference!
2026-05-18 02:13:55.844 | INFO     | earth2studio.run:ensemble:336 - Inference device: cuda

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.280 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.292 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.303 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.314 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.326 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.337 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.348 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 404382959-913875

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.359 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.370 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.382 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.393 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.404 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.416 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.427 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.438 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.449 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.460 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.471 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.482 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.493 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.504 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.515 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.526 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.536 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.547 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.558 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.569 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.580 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.591 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.602 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.613 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.625 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.636 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.646 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.657 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.668 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.679 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.690 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.702 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.713 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.724 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.734 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.745 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.756 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.767 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.778 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.789 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.800 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.811 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.822 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.833 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.844 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.854 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.866 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.877 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.888 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.899 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.909 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.920 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.931 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.942 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.953 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.964 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.975 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.985 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:57.996 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.006 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.017 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.028 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.039 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.050 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.061 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.071 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]

2026-05-18 02:13:58.082 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137

Fetching GFS data:   0%|          | 0/74 [00:00<?, ?it/s]
Fetching GFS data:   1%|▏         | 1/74 [00:00<00:59,  1.23it/s]
Fetching GFS data: 100%|██████████| 74/74 [00:00<00:00, 91.00it/s]
2026-05-18 02:13:58.224 | SUCCESS  | earth2studio.run:ensemble:358 - Fetched data from GFS
2026-05-18 02:13:58.245 | INFO     | earth2studio.run:ensemble:386 - Starting 2 Member Ensemble Inference with             2 number of batches.



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.329 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 211043451-1192232



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.341 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 408062467-879185



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.352 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.364 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 390243670-963082



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.375 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 329799511-896349



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.387 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 189840662-1179194



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.398 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.409 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152040961-493376



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.420 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 399434135-840126



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.431 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.443 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.454 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 198184389-747202



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.465 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 411298483-922437



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.476 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 253521451-719382



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.488 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 200082859-1168749



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.499 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.511 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 350547115-929875



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.522 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 200175442-1167472



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.534 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 390660597-1219295



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.545 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 0-1002356



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.556 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.567 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 187427126-731084



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.578 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 198733171-727414



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.589 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 212236463-1187155



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.601 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 179108822-1168912



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.612 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.623 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 420029701-1181204



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.635 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.646 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151904457-465264



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.657 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 232576858-1266241



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.668 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 167747263-1134797



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.679 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.690 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 183650695-972676



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.701 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 410138186-925503



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.712 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.723 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 257413354-553231



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.734 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 209414924-720687



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.746 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 353190489-858785



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.757 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.768 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410028724-962181



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.780 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 189979250-1176980



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.791 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 171310346-917594



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.802 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.813 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 278865492-888548



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.824 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293912488-745515



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.835 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 387075654-860051



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.846 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.857 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 299407315-892557



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.868 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 421300034-1181973



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.879 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 357218775-1228059



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.891 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150405231-492889



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.901 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.912 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 271656637-839000



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.923 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 260003950-922575



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.935 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 232267599-726560



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.945 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 147098312-1020507



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.956 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.967 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193097116-578707



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.978 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:58.989 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 188158210-757568



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.000 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 274408443-1223885



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.011 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 180472580-1170586



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.022 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 146062919-744726



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.033 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 388958699-1221367



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.045 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 414536832-944207



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.056 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 412411490-969112



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.067 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 236529889-574678



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.077 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.088 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 230544483-732296



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.099 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 238482926-588964



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.110 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 210135611-756844



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.121 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 166333209-766399



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.132 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.143 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214779600-623304



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.154 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 353999639-932543



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.166 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 182403895-973883



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.177 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.187 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293067730-844758



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.199 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 204760966-590133



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.210 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 177568911-747761



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.221 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.232 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 179476202-1048997



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.244 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 214401793-605228



Total Ensemble Batches:   0%|          | 0/2 [00:00<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.254 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.266 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 172983015-919489



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.277 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 188024992-754829



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.288 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 355472229-1239204



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.299 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208203900-724608



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.311 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203402796-589859



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.322 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177186467-735476



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:00<?, ?it/s]





2026-05-18 02:13:59.334 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 215757651-606283



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.345 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 169411507-1139754



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.358 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 198088880-741667



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.370 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.381 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 413380602-945786



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.392 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 279542923-898410



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.404 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.414 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 166625127-737840



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.426 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194932669-578572



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.437 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 255488233-1268872



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.449 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208774754-755459



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.459 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.470 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 458864763-976640



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.481 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 392065452-969982



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.492 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.504 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 274954839-840806



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.515 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 352251507-938982



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.527 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 275899947-1309015



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.539 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 272495637-727089



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.550 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 257599990-916338



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.561 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.572 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 387152087-1211521



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.583 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 199460585-743054



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.594 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 457464510-979481



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.605 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 297490896-1247432



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.617 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 394736180-951384



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.628 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 172227940-905153



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.639 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.651 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 205351099-596883



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.661 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.673 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172991226-911247



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.684 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301084617-899856



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.695 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.706 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 146927534-759351



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.717 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.728 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410990905-942963



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.739 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 231450583-817016



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.750 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 334970306-938022



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.761 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.773 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 295820475-1242797



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.784 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 328218119-898804



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.795 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.807 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 455143487-973469



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.818 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 459841403-963517



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.829 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359046224-949853



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.840 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.850 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 361723180-950913



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.862 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178922087-749074



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.873 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.883 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 456116956-963873



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.894 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203992655-596596



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.905 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.916 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 146298066-757068



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.927 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 413569354-967478



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.938 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 201444244-1166535



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.949 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 294691465-856457



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.961 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.972 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 406073657-506593



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.983 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 183377778-912918



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:13:59.994 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.005 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 229726800-817683



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.016 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167248172-739678



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.027 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 191094271-1176950



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.038 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.049 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 397639332-840040



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.060 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 188547657-732362



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.071 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 299224343-1245614



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.083 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150898120-463977



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.093 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.104 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236647942-590553



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.115 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 296442783-848791



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.125 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273134252-842380



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.136 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.147 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 0-1031836



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.158 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 189280019-753310



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.169 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193675823-578990



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.180 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 232918171-1262978



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.191 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 334185945-934655



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.203 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 353761167-1225423



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.214 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.225 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 417602460-1179045



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.236 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 168789447-980831



Total Ensemble Batches:   0%|          | 0/2 [00:01<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.247 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 215007021-618021



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.257 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.268 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177921943-752161



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.279 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178183898-738189



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.290 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 275795645-726593



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.301 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 397402829-996456



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.312 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.323 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 407776106-914088



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:01<?, ?it/s]





2026-05-18 02:14:00.334 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 253388728-1269329



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.345 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 237104567-587286



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.356 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.367 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 147055134-746039



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.378 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 237907755-575171



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.388 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.399 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151411717-492740



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.414 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 258516328-918758



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.430 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.445 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 358255541-950771



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.461 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 252718154-803297



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.477 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 388773222-859658



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.494 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.509 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172072425-918801



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.525 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 329654990-1225009



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.540 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167987850-767526



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.556 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 280441333-889661



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.572 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.586 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 167362967-767433



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.601 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 259087914-916036



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.617 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.639 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.652 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 203498423-589842



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.662 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 148091792-1031496



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.673 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301984473-889315



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.684 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.695 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.706 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 300299872-884864



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.717 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 216363934-618291



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.727 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 330695860-846471



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.738 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 329116923-847018



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.749 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.760 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 182534428-973065



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.771 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 335908328-940530



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.782 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.793 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193820670-578278



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.803 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 281281791-898336



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.814 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 354932182-856465



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.825 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.836 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208928508-761990



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.846 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 409589953-513282



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.857 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359996077-949678



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.868 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.880 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 391206752-950631



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.891 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 302819301-896743



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.901 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.912 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193241168-579502



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.922 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 385279214-852759



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.933 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 393035434-953486



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.944 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 404382959-913875



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.955 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.966 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 393767669-968511



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.976 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 297291574-754222



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.987 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 295547922-758800



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:00.998 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.009 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236071718-576224



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.020 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 399119260-992978



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.031 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 145304873-758046



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.042 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.052 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 183507493-913609



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.063 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 336687879-934577



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.074 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 148724824-1026834



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.084 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.095 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214171943-607657



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.106 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 351476990-852387



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.117 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 165594251-738958



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.127 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.138 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 282180127-893274



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.149 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 234294213-1264469



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.160 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273976632-728286



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.171 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.181 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 277968948-896544



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.192 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 360780804-942376



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.203 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 176832054-736857



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.214 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.225 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 250614479-803472



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.236 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 303716044-887380



Total Ensemble Batches:   0%|          | 0/2 [00:02<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.247 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.258 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 256868469-544885



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.268 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 458443991-962968



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.279 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 187292486-732506



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.289 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.300 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 251417951-723202



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.325 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 173902504-907905



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:02<?, ?it/s]





2026-05-18 02:14:01.348 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 332945430-1359233



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.365 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 331362340-1232012



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.378 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 333255379-930566



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.398 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194353089-579580



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.411 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 197360802-728078



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.426 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.442 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 204088265-596882



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.456 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 337622456-936189



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.470 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 277722016-1226189



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.484 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 252034627-722839



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.499 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.515 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 197458039-726350



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.530 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 0-998436



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.555 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 147686885-749156



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.569 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208052937-721817



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.585 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.599 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 395625686-986980



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.613 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152534337-466715



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.627 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230889350-725457



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.641 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.655 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.669 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 401150630-841557



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.683 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230071239-818111



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.698 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 254001564-1267820



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.713 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 326532594-890776



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.726 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 184623371-911795



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.740 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.753 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 357316538-939003



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.767 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 327423370-840295



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.781 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 251230645-803982



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.795 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]





2026-05-18 02:14:01.809 | DEBUG    | earth2studio.data.gfs:fetch_array:367 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 210882735-1186600



Total Ensemble Batches:   0%|          | 0/2 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 0/296 [00:03<?, ?it/s]
Fetching GFS data:   0%|          | 1/296 [00:03<17:10,  3.49s/it]
Fetching GFS data: 100%|██████████| 296/296 [00:03<00:00, 84.70it/s]


Running batch 0 inference:   0%|          | 0/5 [00:00<?, ?it/s]

Running batch 0 inference:  40%|████      | 2/5 [00:00<00:01,  2.53it/s]

Running batch 0 inference:  60%|██████    | 3/5 [00:01<00:01,  1.91it/s]

Running batch 0 inference:  80%|████████  | 4/5 [00:02<00:00,  1.70it/s]

Running batch 0 inference: 100%|██████████| 5/5 [00:02<00:00,  1.60it/s]




Total Ensemble Batches:  50%|█████     | 1/2 [00:12<00:12, 12.57s/it]

Running batch 1 inference:   0%|          | 0/5 [00:00<?, ?it/s]

Running batch 1 inference:  20%|██        | 1/5 [00:00<00:00,  8.67it/s]

Running batch 1 inference:  40%|████      | 2/5 [00:00<00:01,  2.17it/s]

Running batch 1 inference:  60%|██████    | 3/5 [00:01<00:01,  1.76it/s]

Running batch 1 inference:  80%|████████  | 4/5 [00:02<00:00,  1.61it/s]

Running batch 1 inference: 100%|██████████| 5/5 [00:02<00:00,  1.54it/s]




Total Ensemble Batches: 100%|██████████| 2/2 [00:15<00:00,  6.89s/it]
Total Ensemble Batches: 100%|██████████| 2/2 [00:15<00:00,  7.74s/it]
2026-05-18 02:14:13.727 | SUCCESS  | earth2studio.run:ensemble:439 -
Inference complete
/
├── ensemble (2,) int64
├── lat (721,) float64
├── lead_time (5,) timedelta64
├── lon (1440,) float64
├── time (1,) datetime64
├── u10m (2, 1, 5, 721, 1440) float32
└── v10m (2, 1, 5, 721, 1440) float32

Post Processing#

The result of the workflow is two zarr stores with the ensemble data for the respective checkpoints used. The rest of the example is focused on some basic post processing to visualize the results.

import cartopy.crs as ccrs
import matplotlib.pyplot as plt
import numpy as np
import xarray as xr

lead_time = 4
plot_date = start_date + timedelta(hours=int(6 * lead_time))

# Load data from both zarr stores
ds0 = xr.open_zarr("outputs/11_hens_0.zarr")
ds1 = xr.open_zarr("outputs/11_hens_1.zarr")

# Combine the datasets
ds = xr.concat([ds0, ds1], dim="ensemble")

# Calculate wind speed magnitude
wind_speed = np.sqrt(ds.u10m**2 + ds.v10m**2)

# Get mean and std of 4th timestep across ensemble
mean_wind = wind_speed.isel(time=0, lead_time=lead_time).mean(dim="ensemble")
std_wind = wind_speed.isel(time=0, lead_time=lead_time).std(dim="ensemble")

# Create figure with two subplots
fig, (ax1, ax2) = plt.subplots(
    1, 2, figsize=(15, 4), subplot_kw={"projection": ccrs.PlateCarree()}
)

# Plot mean
p1 = ax1.contourf(
    mean_wind.coords["lon"],
    mean_wind.coords["lat"],
    mean_wind,
    levels=15,
    transform=ccrs.PlateCarree(),
    cmap="nipy_spectral",
)
ax1.coastlines()
ax1.set_title(f'Mean Wind Speed\n{plot_date.strftime("%Y-%m-%d %H:%M UTC")}')
fig.colorbar(p1, ax=ax1, label="m/s")

# Plot standard deviation
p2 = ax2.contourf(
    std_wind.coords["lon"],
    std_wind.coords["lat"],
    std_wind,
    levels=15,
    transform=ccrs.PlateCarree(),
    cmap="viridis",
)
ax2.coastlines()
ax2.set_title(
    f'Wind Speed Standard Deviation\n{plot_date.strftime("%Y-%m-%d %H:%M UTC")}'
)
fig.colorbar(p2, ax=ax2, label="m/s")

plt.tight_layout()
# Save the figure
plt.savefig(f"outputs/11_hens_step_{plot_date.strftime('%Y_%m_%d')}.jpg")
Mean Wind Speed 2024-01-02 00:00 UTC, Wind Speed Standard Deviation 2024-01-02 00:00 UTC

Total running time of the script: (3 minutes 54.088 seconds)

Gallery generated by Sphinx-Gallery