Note
Go to the end to download the full example code.
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:
coming soon
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
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:
Prognostic Base Model: Use SFNO model architecture
earth2studio.models.px.SFNO
.Datasource: Pull data from the GFS data api
earth2studio.data.GFS
.Perturbation Method: HENS uses a novel perturbation method
earth2studio.perturbation.HemisphericCentredBredVector
.Seeding Perturbation Method: Perturbation method to seed the Bred Vector
earth2studio.perturbation.CorrelatedSphericalGaussian
.
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])
noise_amplification[40] = 1.0 # z500
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, 160kB/s]
Downloading config.json: 100%|██████████| 22.4k/22.4k [00:00<00:00, 159kB/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, 7.03MB/s]
Downloading orography.nc: 100%|██████████| 2.50M/2.50M [00:00<00:00, 6.94MB/s]
Downloading land_mask.nc: 0%| | 0.00/748k [00:00<?, ?B/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 4.85MB/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 4.78MB/s]
Downloading global_means.npy: 0%| | 0.00/720 [00:00<?, ?B/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 5.08kB/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 5.03kB/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.29kB/s]
Downloading global_stds.npy: 100%|██████████| 720/720 [00:00<00:00, 5.23kB/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<03:36, 41.2MB/s]
Downloading best_ckpt_mp0.tar: 0%| | 30.0M/8.31G [00:00<01:36, 92.2MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 50.0M/8.31G [00:00<01:12, 123MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 70.0M/8.31G [00:00<01:02, 142MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 90.0M/8.31G [00:00<00:56, 155MB/s]
Downloading best_ckpt_mp0.tar: 1%|▏ | 110M/8.31G [00:00<00:53, 164MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 130M/8.31G [00:00<00:51, 172MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 150M/8.31G [00:01<00:49, 177MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 170M/8.31G [00:01<00:48, 180MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 190M/8.31G [00:01<00:47, 184MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 210M/8.31G [00:01<00:46, 186MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 230M/8.31G [00:01<00:46, 187MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 250M/8.31G [00:01<00:45, 189MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 270M/8.31G [00:01<00:45, 189MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 290M/8.31G [00:01<00:45, 189MB/s]
Downloading best_ckpt_mp0.tar: 4%|▎ | 310M/8.31G [00:01<00:45, 190MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍ | 330M/8.31G [00:02<00:44, 191MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍ | 350M/8.31G [00:02<00:44, 191MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍ | 370M/8.31G [00:02<00:44, 190MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍ | 390M/8.31G [00:02<00:44, 191MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍ | 410M/8.31G [00:02<00:44, 190MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌ | 430M/8.31G [00:02<00:45, 188MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌ | 450M/8.31G [00:02<00:48, 174MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 470M/8.31G [00:02<00:46, 180MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 490M/8.31G [00:02<00:46, 182MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 510M/8.31G [00:03<00:45, 185MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 530M/8.31G [00:03<00:44, 188MB/s]
Downloading best_ckpt_mp0.tar: 6%|▋ | 550M/8.31G [00:03<00:44, 189MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 570M/8.31G [00:03<00:44, 187MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 590M/8.31G [00:03<00:44, 187MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 610M/8.31G [00:03<00:43, 188MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 630M/8.31G [00:03<00:43, 188MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 650M/8.31G [00:03<00:44, 185MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 670M/8.31G [00:03<00:44, 186MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 690M/8.31G [00:04<00:44, 186MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 710M/8.31G [00:04<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 9%|▊ | 730M/8.31G [00:04<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉ | 750M/8.31G [00:04<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉ | 770M/8.31G [00:04<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉ | 790M/8.31G [00:04<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉ | 810M/8.31G [00:04<00:42, 188MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉ | 830M/8.31G [00:04<00:42, 189MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉ | 850M/8.31G [00:04<00:41, 192MB/s]
Downloading best_ckpt_mp0.tar: 10%|█ | 870M/8.31G [00:05<00:41, 191MB/s]
Downloading best_ckpt_mp0.tar: 10%|█ | 890M/8.31G [00:05<00:42, 190MB/s]
Downloading best_ckpt_mp0.tar: 11%|█ | 910M/8.31G [00:05<00:42, 190MB/s]
Downloading best_ckpt_mp0.tar: 11%|█ | 930M/8.31G [00:05<00:42, 185MB/s]
Downloading best_ckpt_mp0.tar: 11%|█ | 950M/8.31G [00:05<00:43, 181MB/s]
Downloading best_ckpt_mp0.tar: 11%|█▏ | 970M/8.31G [00:05<00:43, 181MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 990M/8.31G [00:05<00:42, 184MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 0.99G/8.31G [00:05<00:42, 186MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 1.01G/8.31G [00:05<00:41, 188MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 1.03G/8.31G [00:06<00:41, 189MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.04G/8.31G [00:06<00:41, 187MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.06G/8.31G [00:06<00:41, 188MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.08G/8.31G [00:06<00:41, 189MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.10G/8.31G [00:06<00:40, 190MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▎ | 1.12G/8.31G [00:06<00:40, 190MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.14G/8.31G [00:06<00:40, 190MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.16G/8.31G [00:06<00:40, 191MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.18G/8.31G [00:06<00:40, 188MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.20G/8.31G [00:07<00:41, 184MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍ | 1.22G/8.31G [00:07<00:40, 186MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍ | 1.24G/8.31G [00:07<00:40, 188MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌ | 1.26G/8.31G [00:07<00:40, 189MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌ | 1.28G/8.31G [00:07<00:40, 189MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌ | 1.30G/8.31G [00:07<00:39, 189MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌ | 1.32G/8.31G [00:07<00:40, 185MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌ | 1.34G/8.31G [00:07<00:40, 186MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▋ | 1.36G/8.31G [00:08<00:39, 187MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.38G/8.31G [00:08<00:39, 186MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.40G/8.31G [00:08<00:39, 187MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.42G/8.31G [00:08<00:39, 188MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.44G/8.31G [00:08<00:38, 189MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.46G/8.31G [00:08<00:38, 190MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.47G/8.31G [00:08<00:38, 190MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.49G/8.31G [00:08<00:38, 190MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.51G/8.31G [00:08<00:38, 191MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.53G/8.31G [00:08<00:38, 191MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▊ | 1.55G/8.31G [00:09<00:37, 192MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉ | 1.57G/8.31G [00:09<00:37, 192MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉ | 1.59G/8.31G [00:09<00:37, 191MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉ | 1.61G/8.31G [00:09<00:38, 186MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉ | 1.63G/8.31G [00:09<00:39, 180MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉ | 1.65G/8.31G [00:09<00:39, 183MB/s]
Downloading best_ckpt_mp0.tar: 20%|██ | 1.67G/8.31G [00:09<00:38, 185MB/s]
Downloading best_ckpt_mp0.tar: 20%|██ | 1.69G/8.31G [00:09<00:37, 187MB/s]
Downloading best_ckpt_mp0.tar: 21%|██ | 1.71G/8.31G [00:10<00:38, 183MB/s]
Downloading best_ckpt_mp0.tar: 21%|██ | 1.73G/8.31G [00:10<00:37, 187MB/s]
Downloading best_ckpt_mp0.tar: 21%|██ | 1.75G/8.31G [00:10<00:37, 188MB/s]
Downloading best_ckpt_mp0.tar: 21%|██▏ | 1.77G/8.31G [00:10<00:37, 188MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.79G/8.31G [00:10<00:36, 190MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.81G/8.31G [00:10<00:36, 191MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.83G/8.31G [00:10<00:36, 192MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.85G/8.31G [00:10<00:36, 192MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.87G/8.31G [00:10<00:36, 191MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.88G/8.31G [00:10<00:36, 191MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.90G/8.31G [00:11<00:35, 191MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.92G/8.31G [00:11<00:35, 191MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.94G/8.31G [00:11<00:35, 191MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▎ | 1.96G/8.31G [00:11<00:35, 192MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍ | 1.98G/8.31G [00:11<00:35, 192MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍ | 2.00G/8.31G [00:11<00:35, 192MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍ | 2.02G/8.31G [00:11<00:35, 191MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍ | 2.04G/8.31G [00:11<00:35, 191MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍ | 2.06G/8.31G [00:11<00:35, 192MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌ | 2.08G/8.31G [00:12<00:34, 192MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌ | 2.10G/8.31G [00:12<00:34, 192MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.12G/8.31G [00:12<00:35, 188MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.14G/8.31G [00:12<00:34, 189MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.16G/8.31G [00:12<00:34, 190MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.18G/8.31G [00:12<00:34, 191MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▋ | 2.20G/8.31G [00:12<00:34, 192MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.22G/8.31G [00:12<00:34, 192MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.24G/8.31G [00:12<00:33, 193MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.26G/8.31G [00:13<00:33, 193MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.28G/8.31G [00:13<00:33, 193MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.29G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.31G/8.31G [00:13<00:33, 190MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.33G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.35G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▊ | 2.37G/8.31G [00:13<00:33, 192MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.39G/8.31G [00:13<00:33, 192MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.41G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.43G/8.31G [00:14<00:32, 194MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.45G/8.31G [00:14<00:32, 193MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉ | 2.47G/8.31G [00:14<00:32, 192MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉ | 2.49G/8.31G [00:14<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 30%|███ | 2.51G/8.31G [00:14<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 30%|███ | 2.53G/8.31G [00:14<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 31%|███ | 2.55G/8.31G [00:14<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 31%|███ | 2.57G/8.31G [00:14<00:32, 192MB/s]
Downloading best_ckpt_mp0.tar: 31%|███ | 2.59G/8.31G [00:14<00:32, 189MB/s]
Downloading best_ckpt_mp0.tar: 31%|███▏ | 2.61G/8.31G [00:15<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.63G/8.31G [00:15<00:32, 190MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.65G/8.31G [00:15<00:31, 190MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.67G/8.31G [00:15<00:32, 185MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.69G/8.31G [00:15<00:32, 187MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.71G/8.31G [00:15<00:32, 185MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.72G/8.31G [00:15<00:32, 187MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.74G/8.31G [00:15<00:31, 189MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.76G/8.31G [00:15<00:31, 190MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.78G/8.31G [00:16<00:31, 187MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▎ | 2.80G/8.31G [00:16<00:32, 185MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍ | 2.82G/8.31G [00:16<00:31, 187MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍ | 2.84G/8.31G [00:16<00:31, 189MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍ | 2.86G/8.31G [00:16<00:30, 190MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍ | 2.88G/8.31G [00:16<00:30, 190MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍ | 2.90G/8.31G [00:16<00:31, 186MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌ | 2.92G/8.31G [00:16<00:30, 188MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌ | 2.94G/8.31G [00:16<00:30, 189MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌ | 2.96G/8.31G [00:17<00:30, 190MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌ | 2.98G/8.31G [00:17<00:30, 189MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌ | 3.00G/8.31G [00:17<00:30, 189MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▋ | 3.02G/8.31G [00:17<00:29, 190MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.04G/8.31G [00:17<00:29, 191MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.06G/8.31G [00:17<00:29, 189MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.08G/8.31G [00:17<00:29, 190MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.10G/8.31G [00:17<00:29, 191MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.12G/8.31G [00:17<00:29, 190MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.13G/8.31G [00:18<00:29, 187MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.15G/8.31G [00:18<00:29, 188MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.17G/8.31G [00:18<00:29, 189MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.19G/8.31G [00:18<00:28, 189MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▊ | 3.21G/8.31G [00:18<00:28, 190MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉ | 3.23G/8.31G [00:18<00:28, 188MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉ | 3.25G/8.31G [00:18<00:28, 188MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉ | 3.27G/8.31G [00:18<00:28, 187MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉ | 3.29G/8.31G [00:18<00:29, 185MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉ | 3.31G/8.31G [00:19<00:29, 185MB/s]
Downloading best_ckpt_mp0.tar: 40%|████ | 3.33G/8.31G [00:19<00:28, 186MB/s]
Downloading best_ckpt_mp0.tar: 40%|████ | 3.35G/8.31G [00:19<00:28, 187MB/s]
Downloading best_ckpt_mp0.tar: 41%|████ | 3.37G/8.31G [00:19<00:45, 117MB/s]
Downloading best_ckpt_mp0.tar: 41%|████ | 3.39G/8.31G [00:19<00:41, 127MB/s]
Downloading best_ckpt_mp0.tar: 41%|████ | 3.41G/8.31G [00:19<00:38, 138MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏ | 3.43G/8.31G [00:19<00:34, 150MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏ | 3.45G/8.31G [00:20<00:32, 161MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.47G/8.31G [00:20<00:30, 169MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.49G/8.31G [00:20<00:29, 174MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.51G/8.31G [00:20<00:28, 179MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.53G/8.31G [00:20<00:28, 182MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.54G/8.31G [00:20<00:27, 184MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.56G/8.31G [00:20<00:27, 186MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.58G/8.31G [00:20<00:26, 189MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.60G/8.31G [00:20<00:26, 190MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▎ | 3.62G/8.31G [00:21<00:27, 186MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍ | 3.64G/8.31G [00:21<00:27, 185MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍ | 3.66G/8.31G [00:21<00:27, 184MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍ | 3.68G/8.31G [00:21<00:26, 185MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍ | 3.70G/8.31G [00:21<00:26, 190MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍ | 3.72G/8.31G [00:21<00:25, 193MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌ | 3.74G/8.31G [00:21<00:25, 194MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌ | 3.76G/8.31G [00:21<00:25, 194MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌ | 3.78G/8.31G [00:21<00:25, 193MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌ | 3.80G/8.31G [00:22<00:25, 192MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌ | 3.82G/8.31G [00:22<00:25, 192MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌ | 3.84G/8.31G [00:22<00:25, 191MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▋ | 3.86G/8.31G [00:22<00:25, 187MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.88G/8.31G [00:22<00:25, 189MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.90G/8.31G [00:22<00:24, 190MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.92G/8.31G [00:22<00:24, 190MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.94G/8.31G [00:22<00:24, 190MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 3.96G/8.31G [00:22<00:24, 188MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 3.97G/8.31G [00:23<00:24, 188MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 3.99G/8.31G [00:23<00:24, 186MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 4.01G/8.31G [00:23<00:24, 185MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▊ | 4.03G/8.31G [00:23<00:25, 183MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.05G/8.31G [00:23<00:25, 179MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.07G/8.31G [00:23<00:25, 178MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.09G/8.31G [00:23<00:25, 177MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.11G/8.31G [00:23<00:25, 178MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉ | 4.13G/8.31G [00:24<00:25, 178MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉ | 4.15G/8.31G [00:24<00:24, 180MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████ | 4.17G/8.31G [00:24<00:24, 178MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████ | 4.19G/8.31G [00:24<00:24, 182MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████ | 4.21G/8.31G [00:24<00:24, 182MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████ | 4.23G/8.31G [00:24<00:23, 185MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████ | 4.25G/8.31G [00:24<00:23, 184MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████▏ | 4.27G/8.31G [00:24<00:23, 187MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.29G/8.31G [00:24<00:22, 188MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.31G/8.31G [00:25<00:22, 189MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.33G/8.31G [00:25<00:22, 190MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.35G/8.31G [00:25<00:22, 189MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.37G/8.31G [00:25<00:22, 190MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.39G/8.31G [00:25<00:21, 195MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.41G/8.31G [00:25<00:21, 195MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.43G/8.31G [00:25<00:21, 195MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▎ | 4.45G/8.31G [00:25<00:21, 193MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍ | 4.47G/8.31G [00:25<00:21, 194MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍ | 4.49G/8.31G [00:26<00:21, 194MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍ | 4.51G/8.31G [00:26<00:21, 194MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍ | 4.53G/8.31G [00:26<00:21, 185MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍ | 4.55G/8.31G [00:26<00:21, 187MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌ | 4.57G/8.31G [00:26<00:21, 188MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌ | 4.59G/8.31G [00:26<00:21, 188MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌ | 4.61G/8.31G [00:26<00:20, 190MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌ | 4.63G/8.31G [00:26<00:20, 190MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌ | 4.65G/8.31G [00:26<00:20, 190MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌ | 4.67G/8.31G [00:27<00:20, 190MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▋ | 4.69G/8.31G [00:27<00:20, 189MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.71G/8.31G [00:27<00:20, 186MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.73G/8.31G [00:27<00:20, 185MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.75G/8.31G [00:27<00:20, 186MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.77G/8.31G [00:27<00:20, 185MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.79G/8.31G [00:27<00:20, 185MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.80G/8.31G [00:27<00:20, 187MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.82G/8.31G [00:27<00:19, 188MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.84G/8.31G [00:28<00:19, 188MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▊ | 4.86G/8.31G [00:28<00:19, 187MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.88G/8.31G [00:28<00:19, 187MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.90G/8.31G [00:28<00:19, 187MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.92G/8.31G [00:28<00:19, 188MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.94G/8.31G [00:28<00:19, 188MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉ | 4.96G/8.31G [00:28<00:19, 188MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉ | 4.98G/8.31G [00:28<00:18, 188MB/s]
Downloading best_ckpt_mp0.tar: 60%|██████ | 5.00G/8.31G [00:28<00:18, 188MB/s]
Downloading best_ckpt_mp0.tar: 60%|██████ | 5.02G/8.31G [00:29<00:18, 189MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.04G/8.31G [00:29<00:18, 188MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.06G/8.31G [00:29<00:18, 189MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.08G/8.31G [00:29<00:18, 187MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████▏ | 5.10G/8.31G [00:29<00:18, 185MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.12G/8.31G [00:29<00:18, 185MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.14G/8.31G [00:29<00:18, 185MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.16G/8.31G [00:29<00:18, 184MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.18G/8.31G [00:30<00:18, 182MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.20G/8.31G [00:30<00:18, 180MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.21G/8.31G [00:30<00:18, 179MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.23G/8.31G [00:30<00:18, 179MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.25G/8.31G [00:30<00:18, 179MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.27G/8.31G [00:30<00:17, 183MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▎ | 5.29G/8.31G [00:30<00:17, 188MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍ | 5.31G/8.31G [00:30<00:16, 191MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍ | 5.33G/8.31G [00:30<00:16, 193MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍ | 5.35G/8.31G [00:31<00:16, 195MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍ | 5.37G/8.31G [00:31<00:16, 197MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍ | 5.39G/8.31G [00:31<00:16, 195MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌ | 5.41G/8.31G [00:31<00:16, 191MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌ | 5.43G/8.31G [00:31<00:16, 188MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌ | 5.45G/8.31G [00:31<00:16, 189MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌ | 5.47G/8.31G [00:31<00:16, 186MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌ | 5.49G/8.31G [00:31<00:16, 186MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▋ | 5.51G/8.31G [00:31<00:16, 185MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.53G/8.31G [00:32<00:16, 181MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.55G/8.31G [00:32<00:16, 177MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.57G/8.31G [00:32<00:16, 175MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.59G/8.31G [00:32<00:16, 175MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.61G/8.31G [00:32<00:16, 174MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.62G/8.31G [00:32<00:16, 172MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.64G/8.31G [00:32<00:16, 172MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.66G/8.31G [00:32<00:16, 170MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.68G/8.31G [00:33<00:16, 171MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▊ | 5.70G/8.31G [00:33<00:17, 158MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.72G/8.31G [00:33<00:17, 162MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.74G/8.31G [00:33<00:17, 159MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.76G/8.31G [00:33<00:16, 162MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉ | 5.78G/8.31G [00:33<00:16, 162MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉ | 5.80G/8.31G [00:33<00:16, 160MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████ | 5.82G/8.31G [00:33<00:17, 157MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████ | 5.84G/8.31G [00:34<00:16, 159MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.86G/8.31G [00:34<00:16, 158MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.88G/8.31G [00:34<00:16, 160MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.90G/8.31G [00:34<00:15, 162MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.92G/8.31G [00:34<00:15, 163MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████▏ | 5.94G/8.31G [00:34<00:15, 165MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 5.96G/8.31G [00:34<00:15, 164MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 5.98G/8.31G [00:34<00:15, 166MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 6.00G/8.31G [00:35<00:14, 167MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 6.02G/8.31G [00:35<00:14, 167MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.04G/8.31G [00:35<00:22, 110MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.05G/8.31G [00:35<00:19, 124MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.07G/8.31G [00:35<00:17, 137MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.09G/8.31G [00:35<00:16, 149MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▎ | 6.11G/8.31G [00:36<00:15, 157MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍ | 6.13G/8.31G [00:36<00:14, 161MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍ | 6.15G/8.31G [00:36<00:14, 165MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍ | 6.17G/8.31G [00:36<00:13, 168MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍ | 6.19G/8.31G [00:36<00:14, 161MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍ | 6.21G/8.31G [00:36<00:13, 168MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍ | 6.23G/8.31G [00:36<00:12, 172MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌ | 6.25G/8.31G [00:36<00:12, 173MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌ | 6.27G/8.31G [00:37<00:12, 171MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌ | 6.29G/8.31G [00:37<00:12, 171MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌ | 6.31G/8.31G [00:37<00:12, 172MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌ | 6.33G/8.31G [00:37<00:12, 172MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▋ | 6.35G/8.31G [00:37<00:12, 171MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.37G/8.31G [00:37<00:12, 170MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.39G/8.31G [00:37<00:12, 168MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.41G/8.31G [00:37<00:12, 167MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.43G/8.31G [00:37<00:11, 169MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.45G/8.31G [00:38<00:12, 160MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.46G/8.31G [00:38<00:12, 162MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.48G/8.31G [00:38<00:11, 168MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.50G/8.31G [00:38<00:11, 172MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▊ | 6.52G/8.31G [00:38<00:10, 176MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▊ | 6.54G/8.31G [00:38<00:10, 179MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉ | 6.56G/8.31G [00:38<00:10, 179MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉ | 6.58G/8.31G [00:38<00:10, 182MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉ | 6.60G/8.31G [00:39<00:10, 182MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉ | 6.62G/8.31G [00:39<00:10, 181MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉ | 6.64G/8.31G [00:39<00:10, 178MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████ | 6.66G/8.31G [00:39<00:09, 179MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████ | 6.68G/8.31G [00:39<00:09, 177MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.70G/8.31G [00:39<00:09, 175MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.72G/8.31G [00:39<00:09, 172MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.74G/8.31G [00:39<00:09, 170MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████▏ | 6.76G/8.31G [00:40<00:09, 168MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.78G/8.31G [00:40<00:09, 165MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.80G/8.31G [00:40<00:09, 165MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.82G/8.31G [00:40<00:09, 166MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.84G/8.31G [00:40<00:09, 167MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.86G/8.31G [00:40<00:09, 169MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.88G/8.31G [00:40<00:09, 169MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.89G/8.31G [00:40<00:09, 168MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.91G/8.31G [00:41<00:08, 169MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.93G/8.31G [00:41<00:08, 167MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▎ | 6.95G/8.31G [00:41<00:08, 168MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 6.97G/8.31G [00:41<00:08, 170MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 6.99G/8.31G [00:41<00:08, 171MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 7.01G/8.31G [00:41<00:08, 171MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.03G/8.31G [00:41<00:07, 172MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.05G/8.31G [00:41<00:07, 173MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.07G/8.31G [00:42<00:07, 173MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.09G/8.31G [00:42<00:07, 175MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.11G/8.31G [00:42<00:07, 177MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.13G/8.31G [00:42<00:07, 171MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.15G/8.31G [00:42<00:07, 169MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▋ | 7.17G/8.31G [00:42<00:07, 170MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.19G/8.31G [00:42<00:07, 171MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.21G/8.31G [00:42<00:06, 171MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.23G/8.31G [00:43<00:06, 171MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.25G/8.31G [00:43<00:06, 169MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.27G/8.31G [00:43<00:06, 170MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.29G/8.31G [00:43<00:06, 173MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.30G/8.31G [00:43<00:06, 176MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.32G/8.31G [00:43<00:05, 178MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.34G/8.31G [00:43<00:05, 181MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▊ | 7.36G/8.31G [00:43<00:05, 185MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.38G/8.31G [00:43<00:05, 181MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.40G/8.31G [00:44<00:05, 180MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.42G/8.31G [00:44<00:05, 174MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.44G/8.31G [00:44<00:05, 168MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.46G/8.31G [00:44<00:05, 162MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.48G/8.31G [00:44<00:05, 163MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.50G/8.31G [00:44<00:05, 164MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.52G/8.31G [00:44<00:05, 165MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.54G/8.31G [00:44<00:04, 167MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.56G/8.31G [00:45<00:04, 167MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.58G/8.31G [00:45<00:04, 165MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████▏| 7.60G/8.31G [00:45<00:04, 164MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.62G/8.31G [00:45<00:04, 166MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.64G/8.31G [00:45<00:04, 166MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.66G/8.31G [00:45<00:04, 167MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.68G/8.31G [00:45<00:04, 167MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.70G/8.31G [00:45<00:03, 169MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.71G/8.31G [00:46<00:03, 169MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.73G/8.31G [00:46<00:03, 170MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.75G/8.31G [00:46<00:03, 169MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▎| 7.77G/8.31G [00:46<00:03, 166MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.79G/8.31G [00:46<00:03, 165MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.81G/8.31G [00:46<00:03, 165MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.83G/8.31G [00:46<00:03, 167MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.85G/8.31G [00:46<00:02, 168MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.87G/8.31G [00:47<00:02, 169MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.89G/8.31G [00:47<00:02, 169MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.91G/8.31G [00:47<00:02, 171MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.93G/8.31G [00:47<00:02, 172MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.95G/8.31G [00:47<00:02, 173MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.97G/8.31G [00:47<00:02, 176MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.99G/8.31G [00:47<00:01, 179MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▋| 8.01G/8.31G [00:47<00:01, 180MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.03G/8.31G [00:48<00:01, 179MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.05G/8.31G [00:48<00:01, 179MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.07G/8.31G [00:48<00:01, 178MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.09G/8.31G [00:48<00:01, 173MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.11G/8.31G [00:48<00:02, 109MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.12G/8.31G [00:48<00:01, 120MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.14G/8.31G [00:49<00:01, 132MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.16G/8.31G [00:49<00:01, 141MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.18G/8.31G [00:49<00:00, 150MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▊| 8.20G/8.31G [00:49<00:00, 158MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.22G/8.31G [00:49<00:00, 164MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.24G/8.31G [00:49<00:00, 170MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.26G/8.31G [00:49<00:00, 173MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.28G/8.31G [00:49<00:00, 171MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.30G/8.31G [00:49<00:00, 171MB/s]
Downloading best_ckpt_mp0.tar: 100%|██████████| 8.31G/8.31G [00:50<00:00, 178MB/s]
2025-05-15 03:19:40.175 | INFO | earth2studio.run:ensemble:315 - Running ensemble inference!
2025-05-15 03:19:40.175 | INFO | earth2studio.run:ensemble:323 - Inference device: cuda
Fetching GFS data: 0%| | 0/74 [00:00<?, ?it/s]
2025-05-15 03:19:41.405 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.428 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.449 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.450 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.473 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.495 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.518 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.519 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.520 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.520 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.521 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.522 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.522 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.523 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.523 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.547 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.548 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.548 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.549 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.549 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.550 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.551 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.551 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.574 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.575 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.598 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.600 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.624 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.646 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.647 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.648 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.649 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.649 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.672 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.673 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.673 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.696 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.697 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.697 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.698 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.721 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.743 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.744 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.745 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.746 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.746 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.747 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.747 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.770 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.792 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.815 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.838 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.861 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.862 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.884 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.885 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.886 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.886 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.887 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.888 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.888 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.889 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.911 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.912 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.934 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.935 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.936 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.958 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.981 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.982 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:41.982 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:42.005 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:42.005 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:19:42.027 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
Fetching GFS data: 1%|▏ | 1/74 [00:00<00:47, 1.55it/s]
Fetching GFS data: 36%|███▋ | 27/74 [00:01<00:02, 22.16it/s]
Fetching GFS data: 42%|████▏ | 31/74 [00:01<00:01, 23.59it/s]
Fetching GFS data: 49%|████▊ | 36/74 [00:01<00:01, 25.95it/s]
Fetching GFS data: 54%|█████▍ | 40/74 [00:01<00:01, 27.21it/s]
Fetching GFS data: 61%|██████ | 45/74 [00:01<00:00, 29.84it/s]
Fetching GFS data: 69%|██████▉ | 51/74 [00:02<00:00, 31.44it/s]
Fetching GFS data: 74%|███████▍ | 55/74 [00:02<00:00, 33.09it/s]
Fetching GFS data: 81%|████████ | 60/74 [00:02<00:00, 33.25it/s]
Fetching GFS data: 91%|█████████ | 67/74 [00:02<00:00, 36.03it/s]
Fetching GFS data: 100%|██████████| 74/74 [00:02<00:00, 33.89it/s]
Fetching GFS data: 100%|██████████| 74/74 [00:02<00:00, 27.31it/s]
2025-05-15 03:19:44.287 | SUCCESS | earth2studio.run:ensemble:345 - Fetched data from GFS
2025-05-15 03:19:44.292 | WARNING | earth2studio.io.zarr:add_array:192 - Datetime64 not supported in zarr 3.0, converting to int64 nanoseconds since epoch
2025-05-15 03:19:44.297 | WARNING | earth2studio.io.zarr:add_array:198 - Timedelta64 not supported in zarr 3.0, converting to int64 nanoseconds since epoch
2025-05-15 03:19:44.314 | INFO | earth2studio.run:ensemble:367 - 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]
2025-05-15 03:19:44.690 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 458864763-976640
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.693 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 412411490-969112
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.695 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.733 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172991226-911247
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.735 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167248172-739678
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.736 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208052937-721817
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.759 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.782 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151411717-492740
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.783 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 414536832-944207
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.784 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 413380602-945786
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.785 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.807 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 147055134-746039
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.809 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178183898-738189
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.810 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230071239-818111
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.810 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.833 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 187427126-731084
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.834 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194353089-579580
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.835 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 457464510-979481
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.835 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.858 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 182534428-973065
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.860 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 188547657-732362
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.860 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 251230645-803982
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.883 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.906 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214171943-607657
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.907 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 183650695-972676
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.908 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 458443991-962968
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.909 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.932 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 395625686-986980
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.933 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 198733171-727414
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.933 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273134252-842380
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.934 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.957 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 277968948-896544
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.958 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 172983015-919489
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.959 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 408062467-879185
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:44.982 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 404382959-913875
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.005 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 166625127-737840
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.006 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 209414924-720687
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.007 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 294691465-856457
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.029 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.052 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236647942-590553
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.053 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152040961-493376
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.054 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 399434135-840126
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.054 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.076 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 148091792-1031496
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.078 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 231450583-817016
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.078 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 328218119-898804
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.079 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.102 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 421300034-1181973
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.103 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 0-1002356
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.104 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.127 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 253388728-1269329
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.128 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 252718154-803297
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.128 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 352251507-938982
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.129 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.152 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 250614479-803472
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.153 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 411298483-922437
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.153 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 420029701-1181204
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.176 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.199 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 230544483-732296
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.200 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 274954839-840806
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.201 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 397402829-996456
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.224 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.246 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 274408443-1223885
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.248 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 401150630-841557
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.248 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 410138186-925503
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.249 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.271 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 327423370-840295
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.273 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 296442783-848791
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.273 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 146062919-744726
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.274 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.296 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 189979250-1176980
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.298 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 0-998436
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.298 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150405231-492889
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.299 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:19:45.321 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177921943-752161
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.323 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 329799511-896349
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.323 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 166333209-766399
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.324 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.347 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293067730-844758
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.348 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 459841403-963517
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.349 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 171310346-917594
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.350 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.372 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 197360802-728078
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.373 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 417602460-1179045
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.374 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 353999639-932543
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.375 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 177568911-747761
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.375 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.399 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 188158210-757568
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.400 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 409589953-513282
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.401 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 182403895-973883
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.402 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.424 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 350547115-929875
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.425 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 399119260-992978
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.426 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 188024992-754829
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.427 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.449 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 387152087-1211521
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.450 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193097116-578707
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.451 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.474 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 300299872-884864
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.475 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 147686885-749156
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.476 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 198088880-741667
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.476 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.499 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.521 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214779600-623304
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.523 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 413569354-967478
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.523 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203402796-589859
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.524 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.547 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167987850-767526
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.548 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208774754-755459
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.549 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.571 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208203900-724608
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.572 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 353761167-1225423
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.573 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 214401793-605228
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.574 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.596 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 407776106-914088
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.597 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178922087-749074
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.598 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230889350-725457
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.599 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.622 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177186467-735476
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.623 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 236529889-574678
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.623 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.646 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 211043451-1192232
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.647 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 189280019-753310
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.648 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 252034627-722839
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.649 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.672 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 295820475-1242797
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.673 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 329654990-1225009
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.674 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 257599990-916338
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.675 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.697 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 406073657-506593
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.698 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 199460585-743054
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.699 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273976632-728286
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.700 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.722 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193241168-579502
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.724 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 204760966-590133
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.724 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 279542923-898410
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.725 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.748 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 272495637-727089
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.749 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 210135611-756844
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.749 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 295547922-758800
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.750 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.773 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 215757651-606283
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.773 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301084617-899856
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.774 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.796 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 232267599-726560
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.797 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 329116923-847018
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.819 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.841 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 390243670-963082
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.842 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 237907755-575171
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.843 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 334970306-938022
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.844 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.866 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 256868469-544885
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.867 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 253521451-719382
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.868 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 353190489-858785
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.868 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.891 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 299407315-892557
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.892 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 259087914-916036
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.893 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359046224-949853
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.893 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.916 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 257413354-553231
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.916 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 275795645-726593
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.917 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 387075654-860051
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.918 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.940 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 278865492-888548
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.941 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 281281791-898336
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.942 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 392065452-969982
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.943 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.964 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193820670-578278
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.965 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 297291574-754222
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.966 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 147098312-1020507
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.967 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.989 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 397639332-840040
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.990 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 302819301-896743
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.991 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150898120-463977
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:45.992 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.014 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 179476202-1048997
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.015 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 330695860-846471
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.016 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 167747263-1134797
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.016 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.039 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 358255541-950771
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.039 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 336687879-934577
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.040 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 172227940-905153
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.041 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.063 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 271656637-839000
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.064 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 354932182-856465
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.065 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 179108822-1168912
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.066 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.088 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 168789447-980831
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.089 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 360780804-942376
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.090 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 183377778-912918
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.090 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.113 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172072425-918801
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.114 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 388773222-859658
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.114 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 189840662-1179194
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.115 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.138 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 203498423-589842
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.139 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 393767669-968511
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.140 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193675823-578990
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.140 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.163 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 351476990-852387
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.164 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 148724824-1026834
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.164 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 200082859-1168749
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.165 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.188 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 200175442-1167472
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.189 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152534337-466715
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.190 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203992655-596596
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.190 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.213 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410990905-942963
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.214 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 391206752-950631
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.214 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 169411507-1139754
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.215 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 210882735-1186600
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.216 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.241 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 385279214-852759
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.242 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 173902504-907905
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.242 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 215007021-618021
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.243 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.265 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293912488-745515
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.266 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 180472580-1170586
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.267 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 232918171-1262978
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.268 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.290 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 334185945-934655
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.291 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 184623371-911795
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.292 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 237104567-587286
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.293 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:19:46.315 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 232576858-1266241
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.316 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 277722016-1226189
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.317 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 254001564-1267820
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.318 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.340 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194932669-578572
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.341 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 258516328-918758
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.342 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.365 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 0-1031836
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.366 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 212236463-1187155
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.367 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 275899947-1309015
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.368 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.390 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 357316538-939003
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.391 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 205351099-596883
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.392 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 280441333-889661
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.393 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.415 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 456116956-963873
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.416 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 201444244-1166535
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.417 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 297490896-1247432
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.417 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 197458039-726350
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.418 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 216363934-618291
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.419 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301984473-889315
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.420 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.442 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 167362967-767433
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.443 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 299224343-1245614
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.444 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 331362340-1232012
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.444 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236071718-576224
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.445 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 238482926-588964
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.446 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 335908328-940530
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.447 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.469 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208928508-761990
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.470 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 234294213-1264469
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.471 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 355472229-1239204
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.471 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151904457-465264
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.472 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 260003950-922575
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.473 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359996077-949678
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.474 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.496 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 455143487-973469
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.497 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 251417951-723202
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.497 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 191094271-1176950
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.498 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 388958699-1221367
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.499 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 146298066-757068
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.500 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 282180127-893274
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.500 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 393035434-953486
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.501 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.524 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 198184389-747202
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.524 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 255488233-1268872
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.525 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.547 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 303716044-887380
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.548 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 145304873-758046
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.549 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.571 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 183507493-913609
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.572 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 390660597-1219295
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.573 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.596 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 326532594-890776
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.597 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 337622456-936189
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.598 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 165594251-738958
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.598 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.621 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 229726800-817683
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.622 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 357218775-1228059
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.622 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.644 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 333255379-930566
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.645 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 361723180-950913
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.646 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 176832054-736857
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.647 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.669 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410028724-962181
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.670 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 204088265-596882
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.671 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 332945430-1359233
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.671 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.694 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 394736180-951384
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.695 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 187292486-732506
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.695 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:19:46.718 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 146927534-759351
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
Fetching GFS data: 0%| | 1/296 [00:02<09:59, 2.03s/it]
Fetching GFS data: 28%|██▊ | 82/296 [00:02<00:04, 50.63it/s]
Fetching GFS data: 36%|███▋ | 108/296 [00:03<00:04, 37.74it/s]
Fetching GFS data: 42%|████▏ | 123/296 [00:03<00:04, 38.72it/s]
Fetching GFS data: 45%|████▌ | 134/296 [00:03<00:04, 38.12it/s]
Fetching GFS data: 48%|████▊ | 143/296 [00:04<00:03, 39.34it/s]
Fetching GFS data: 51%|█████ | 150/296 [00:04<00:03, 40.50it/s]
Fetching GFS data: 53%|█████▎ | 157/296 [00:04<00:03, 39.68it/s]
Fetching GFS data: 55%|█████▌ | 163/296 [00:04<00:03, 41.23it/s]
Fetching GFS data: 57%|█████▋ | 169/296 [00:04<00:03, 37.45it/s]
Fetching GFS data: 60%|█████▉ | 177/296 [00:04<00:02, 41.29it/s]
Fetching GFS data: 61%|██████▏ | 182/296 [00:05<00:02, 39.68it/s]
Fetching GFS data: 64%|██████▎ | 188/296 [00:05<00:02, 41.79it/s]
Fetching GFS data: 66%|██████▌ | 194/296 [00:05<00:02, 38.43it/s]
Fetching GFS data: 68%|██████▊ | 200/296 [00:05<00:02, 39.16it/s]
Fetching GFS data: 70%|██████▉ | 206/296 [00:05<00:02, 39.55it/s]
Fetching GFS data: 71%|███████▏ | 211/296 [00:05<00:02, 39.43it/s]
Fetching GFS data: 73%|███████▎ | 217/296 [00:05<00:01, 43.65it/s]
Fetching GFS data: 75%|███████▌ | 223/296 [00:06<00:01, 40.38it/s]
Fetching GFS data: 77%|███████▋ | 228/296 [00:06<00:01, 42.34it/s]
Fetching GFS data: 79%|███████▉ | 234/296 [00:06<00:01, 39.52it/s]
Fetching GFS data: 81%|████████▏ | 241/296 [00:06<00:01, 38.11it/s]
Fetching GFS data: 83%|████████▎ | 246/296 [00:06<00:01, 40.53it/s]
Fetching GFS data: 85%|████████▌ | 252/296 [00:06<00:01, 38.66it/s]
Fetching GFS data: 87%|████████▋ | 258/296 [00:06<00:00, 41.03it/s]
Fetching GFS data: 89%|████████▉ | 264/296 [00:07<00:00, 43.02it/s]
Fetching GFS data: 91%|█████████ | 269/296 [00:07<00:00, 42.47it/s]
Fetching GFS data: 93%|█████████▎| 274/296 [00:07<00:00, 40.06it/s]
Fetching GFS data: 94%|█████████▍| 279/296 [00:07<00:00, 42.33it/s]
Fetching GFS data: 96%|█████████▌| 284/296 [00:07<00:00, 43.85it/s]
Fetching GFS data: 98%|█████████▊| 289/296 [00:07<00:00, 38.48it/s]
Fetching GFS data: 99%|█████████▉| 294/296 [00:07<00:00, 39.06it/s]
Fetching GFS data: 100%|██████████| 296/296 [00:08<00:00, 36.53it/s]
Running batch 0 inference: 0%| | 0/5 [00:00<?, ?it/s]
Running batch 0 inference: 20%|██ | 1/5 [00:00<00:00, 4.64it/s]
Running batch 0 inference: 40%|████ | 2/5 [00:01<00:02, 1.16it/s]
Running batch 0 inference: 60%|██████ | 3/5 [00:02<00:02, 1.07s/it]
Running batch 0 inference: 80%|████████ | 4/5 [00:04<00:01, 1.17s/it]
Running batch 0 inference: 100%|██████████| 5/5 [00:05<00:00, 1.23s/it]
Total Ensemble Batches: 50%|█████ | 1/2 [00:27<00:27, 27.33s/it]
Running batch 1 inference: 0%| | 0/5 [00:00<?, ?it/s]
Running batch 1 inference: 20%|██ | 1/5 [00:00<00:01, 3.89it/s]
Running batch 1 inference: 40%|████ | 2/5 [00:01<00:02, 1.12it/s]
Running batch 1 inference: 60%|██████ | 3/5 [00:02<00:02, 1.09s/it]
Running batch 1 inference: 80%|████████ | 4/5 [00:04<00:01, 1.18s/it]
Running batch 1 inference: 100%|██████████| 5/5 [00:05<00:00, 1.23s/it]
Total Ensemble Batches: 100%|██████████| 2/2 [00:32<00:00, 14.52s/it]
Total Ensemble Batches: 100%|██████████| 2/2 [00:32<00:00, 16.44s/it]
2025-05-15 03:20:17.195 | SUCCESS | earth2studio.run:ensemble:412 - Inference complete
/
├── ensemble (2,) int64
├── lat (721,) float64
├── lead_time (5,) int64
├── lon (1440,) float64
├── time (1,) int64
├── 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, 206kB/s]
Downloading config.json: 100%|██████████| 22.4k/22.4k [00:00<00:00, 205kB/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, 8.19MB/s]
Downloading orography.nc: 100%|██████████| 2.50M/2.50M [00:00<00:00, 8.06MB/s]
Downloading land_mask.nc: 0%| | 0.00/748k [00:00<?, ?B/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 5.51MB/s]
Downloading land_mask.nc: 100%|██████████| 748k/748k [00:00<00:00, 5.42MB/s]
Downloading global_means.npy: 0%| | 0.00/720 [00:00<?, ?B/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 5.56kB/s]
Downloading global_means.npy: 100%|██████████| 720/720 [00:00<00:00, 5.51kB/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.74kB/s]
Downloading global_stds.npy: 100%|██████████| 720/720 [00:00<00:00, 5.68kB/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:34, 32.5MB/s]
Downloading best_ckpt_mp0.tar: 0%| | 30.0M/8.31G [00:00<01:57, 75.4MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 50.0M/8.31G [00:00<01:22, 108MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 70.0M/8.31G [00:00<01:07, 130MB/s]
Downloading best_ckpt_mp0.tar: 1%| | 90.0M/8.31G [00:00<01:00, 147MB/s]
Downloading best_ckpt_mp0.tar: 1%|▏ | 110M/8.31G [00:00<00:55, 159MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 130M/8.31G [00:01<00:53, 166MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 150M/8.31G [00:01<00:56, 155MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 170M/8.31G [00:01<00:54, 160MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 190M/8.31G [00:01<00:52, 166MB/s]
Downloading best_ckpt_mp0.tar: 2%|▏ | 210M/8.31G [00:01<00:50, 171MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 230M/8.31G [00:01<00:49, 177MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 250M/8.31G [00:01<00:47, 181MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 270M/8.31G [00:01<00:47, 183MB/s]
Downloading best_ckpt_mp0.tar: 3%|▎ | 290M/8.31G [00:01<00:47, 183MB/s]
Downloading best_ckpt_mp0.tar: 4%|▎ | 310M/8.31G [00:02<00:46, 185MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍ | 330M/8.31G [00:02<00:46, 186MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍ | 350M/8.31G [00:02<00:45, 187MB/s]
Downloading best_ckpt_mp0.tar: 4%|▍ | 370M/8.31G [00:02<00:45, 188MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍ | 390M/8.31G [00:02<00:45, 188MB/s]
Downloading best_ckpt_mp0.tar: 5%|▍ | 410M/8.31G [00:02<00:45, 186MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌ | 430M/8.31G [00:02<00:45, 185MB/s]
Downloading best_ckpt_mp0.tar: 5%|▌ | 450M/8.31G [00:02<00:45, 184MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 470M/8.31G [00:03<00:45, 184MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 490M/8.31G [00:03<00:45, 183MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 510M/8.31G [00:03<00:46, 182MB/s]
Downloading best_ckpt_mp0.tar: 6%|▌ | 530M/8.31G [00:03<00:46, 181MB/s]
Downloading best_ckpt_mp0.tar: 6%|▋ | 550M/8.31G [00:03<00:45, 183MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 570M/8.31G [00:03<00:44, 185MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 590M/8.31G [00:03<00:44, 186MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 610M/8.31G [00:03<00:44, 188MB/s]
Downloading best_ckpt_mp0.tar: 7%|▋ | 630M/8.31G [00:03<00:43, 188MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 650M/8.31G [00:04<00:43, 189MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 670M/8.31G [00:04<00:43, 188MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 690M/8.31G [00:04<00:43, 188MB/s]
Downloading best_ckpt_mp0.tar: 8%|▊ | 710M/8.31G [00:04<00:43, 187MB/s]
Downloading best_ckpt_mp0.tar: 9%|▊ | 730M/8.31G [00:04<00:43, 187MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉ | 750M/8.31G [00:04<00:43, 187MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉ | 770M/8.31G [00:04<00:43, 187MB/s]
Downloading best_ckpt_mp0.tar: 9%|▉ | 790M/8.31G [00:04<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉ | 810M/8.31G [00:04<00:43, 184MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉ | 830M/8.31G [00:05<00:43, 184MB/s]
Downloading best_ckpt_mp0.tar: 10%|▉ | 850M/8.31G [00:05<00:43, 186MB/s]
Downloading best_ckpt_mp0.tar: 10%|█ | 870M/8.31G [00:05<00:42, 187MB/s]
Downloading best_ckpt_mp0.tar: 10%|█ | 890M/8.31G [00:05<00:42, 188MB/s]
Downloading best_ckpt_mp0.tar: 11%|█ | 910M/8.31G [00:05<00:42, 189MB/s]
Downloading best_ckpt_mp0.tar: 11%|█ | 930M/8.31G [00:05<00:41, 190MB/s]
Downloading best_ckpt_mp0.tar: 11%|█ | 950M/8.31G [00:05<00:41, 190MB/s]
Downloading best_ckpt_mp0.tar: 11%|█▏ | 970M/8.31G [00:05<00:41, 191MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 990M/8.31G [00:05<00:41, 190MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 0.99G/8.31G [00:06<00:41, 191MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 1.01G/8.31G [00:06<00:41, 191MB/s]
Downloading best_ckpt_mp0.tar: 12%|█▏ | 1.03G/8.31G [00:06<00:40, 192MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.04G/8.31G [00:06<00:40, 192MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.06G/8.31G [00:06<00:40, 192MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.08G/8.31G [00:06<00:40, 190MB/s]
Downloading best_ckpt_mp0.tar: 13%|█▎ | 1.10G/8.31G [00:06<00:41, 188MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▎ | 1.12G/8.31G [00:06<00:41, 188MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.14G/8.31G [00:06<00:41, 187MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.16G/8.31G [00:07<00:40, 189MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.18G/8.31G [00:07<00:40, 189MB/s]
Downloading best_ckpt_mp0.tar: 14%|█▍ | 1.20G/8.31G [00:07<00:40, 188MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍ | 1.22G/8.31G [00:07<00:40, 188MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▍ | 1.24G/8.31G [00:07<00:40, 186MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌ | 1.26G/8.31G [00:07<00:40, 186MB/s]
Downloading best_ckpt_mp0.tar: 15%|█▌ | 1.28G/8.31G [00:07<00:40, 185MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌ | 1.30G/8.31G [00:07<00:40, 184MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌ | 1.32G/8.31G [00:07<00:41, 182MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▌ | 1.34G/8.31G [00:08<00:42, 175MB/s]
Downloading best_ckpt_mp0.tar: 16%|█▋ | 1.36G/8.31G [00:08<00:42, 176MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.38G/8.31G [00:08<00:41, 180MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.40G/8.31G [00:08<00:40, 182MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.42G/8.31G [00:08<00:40, 185MB/s]
Downloading best_ckpt_mp0.tar: 17%|█▋ | 1.44G/8.31G [00:08<00:39, 186MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.46G/8.31G [00:08<00:39, 187MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.47G/8.31G [00:08<00:38, 189MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.49G/8.31G [00:08<00:38, 189MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.51G/8.31G [00:09<00:38, 189MB/s]
Downloading best_ckpt_mp0.tar: 18%|█▊ | 1.53G/8.31G [00:09<00:38, 188MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▊ | 1.55G/8.31G [00:09<00:38, 190MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉ | 1.57G/8.31G [00:09<00:37, 191MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉ | 1.59G/8.31G [00:09<00:37, 191MB/s]
Downloading best_ckpt_mp0.tar: 19%|█▉ | 1.61G/8.31G [00:09<00:38, 189MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉ | 1.63G/8.31G [00:09<00:38, 189MB/s]
Downloading best_ckpt_mp0.tar: 20%|█▉ | 1.65G/8.31G [00:09<00:37, 190MB/s]
Downloading best_ckpt_mp0.tar: 20%|██ | 1.67G/8.31G [00:09<00:37, 191MB/s]
Downloading best_ckpt_mp0.tar: 20%|██ | 1.69G/8.31G [00:10<00:37, 191MB/s]
Downloading best_ckpt_mp0.tar: 21%|██ | 1.71G/8.31G [00:10<00:37, 191MB/s]
Downloading best_ckpt_mp0.tar: 21%|██ | 1.73G/8.31G [00:10<00:36, 192MB/s]
Downloading best_ckpt_mp0.tar: 21%|██ | 1.75G/8.31G [00:10<00:36, 192MB/s]
Downloading best_ckpt_mp0.tar: 21%|██▏ | 1.77G/8.31G [00:10<00:36, 191MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.79G/8.31G [00:10<00:40, 173MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.81G/8.31G [00:10<00:39, 175MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.83G/8.31G [00:10<00:39, 178MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.85G/8.31G [00:10<00:38, 182MB/s]
Downloading best_ckpt_mp0.tar: 22%|██▏ | 1.87G/8.31G [00:11<00:37, 185MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.88G/8.31G [00:11<00:37, 185MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.90G/8.31G [00:11<00:36, 187MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.92G/8.31G [00:11<00:36, 186MB/s]
Downloading best_ckpt_mp0.tar: 23%|██▎ | 1.94G/8.31G [00:11<00:36, 186MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▎ | 1.96G/8.31G [00:11<00:36, 188MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍ | 1.98G/8.31G [00:11<00:35, 189MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍ | 2.00G/8.31G [00:11<00:35, 189MB/s]
Downloading best_ckpt_mp0.tar: 24%|██▍ | 2.02G/8.31G [00:11<00:35, 190MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍ | 2.04G/8.31G [00:12<00:36, 186MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▍ | 2.06G/8.31G [00:12<00:35, 187MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌ | 2.08G/8.31G [00:12<00:35, 187MB/s]
Downloading best_ckpt_mp0.tar: 25%|██▌ | 2.10G/8.31G [00:12<00:35, 187MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.12G/8.31G [00:12<00:35, 188MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.14G/8.31G [00:12<00:34, 189MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.16G/8.31G [00:12<00:34, 190MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▌ | 2.18G/8.31G [00:12<00:34, 191MB/s]
Downloading best_ckpt_mp0.tar: 26%|██▋ | 2.20G/8.31G [00:12<00:34, 191MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.22G/8.31G [00:13<00:34, 191MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.24G/8.31G [00:13<00:34, 190MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.26G/8.31G [00:13<00:34, 189MB/s]
Downloading best_ckpt_mp0.tar: 27%|██▋ | 2.28G/8.31G [00:13<00:34, 190MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.29G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.31G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.33G/8.31G [00:13<00:33, 190MB/s]
Downloading best_ckpt_mp0.tar: 28%|██▊ | 2.35G/8.31G [00:13<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▊ | 2.37G/8.31G [00:13<00:33, 192MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.39G/8.31G [00:14<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.41G/8.31G [00:14<00:33, 191MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.43G/8.31G [00:14<00:33, 190MB/s]
Downloading best_ckpt_mp0.tar: 29%|██▉ | 2.45G/8.31G [00:14<00:33, 190MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉ | 2.47G/8.31G [00:14<00:32, 190MB/s]
Downloading best_ckpt_mp0.tar: 30%|██▉ | 2.49G/8.31G [00:14<00:32, 190MB/s]
Downloading best_ckpt_mp0.tar: 30%|███ | 2.51G/8.31G [00:14<00:33, 186MB/s]
Downloading best_ckpt_mp0.tar: 30%|███ | 2.53G/8.31G [00:14<00:33, 188MB/s]
Downloading best_ckpt_mp0.tar: 31%|███ | 2.55G/8.31G [00:14<00:32, 189MB/s]
Downloading best_ckpt_mp0.tar: 31%|███ | 2.57G/8.31G [00:15<00:32, 190MB/s]
Downloading best_ckpt_mp0.tar: 31%|███ | 2.59G/8.31G [00:15<00:32, 190MB/s]
Downloading best_ckpt_mp0.tar: 31%|███▏ | 2.61G/8.31G [00:15<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.63G/8.31G [00:15<00:32, 191MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.65G/8.31G [00:15<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.67G/8.31G [00:15<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 32%|███▏ | 2.69G/8.31G [00:15<00:31, 193MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.71G/8.31G [00:15<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.72G/8.31G [00:15<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.74G/8.31G [00:16<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.76G/8.31G [00:16<00:31, 192MB/s]
Downloading best_ckpt_mp0.tar: 33%|███▎ | 2.78G/8.31G [00:16<00:30, 192MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▎ | 2.80G/8.31G [00:16<00:30, 192MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍ | 2.82G/8.31G [00:16<00:30, 191MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍ | 2.84G/8.31G [00:16<00:30, 189MB/s]
Downloading best_ckpt_mp0.tar: 34%|███▍ | 2.86G/8.31G [00:16<00:30, 191MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍ | 2.88G/8.31G [00:16<00:30, 191MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▍ | 2.90G/8.31G [00:16<00:30, 192MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌ | 2.92G/8.31G [00:17<00:30, 193MB/s]
Downloading best_ckpt_mp0.tar: 35%|███▌ | 2.94G/8.31G [00:17<00:29, 193MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌ | 2.96G/8.31G [00:17<00:29, 194MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌ | 2.98G/8.31G [00:17<00:29, 194MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▌ | 3.00G/8.31G [00:17<00:29, 194MB/s]
Downloading best_ckpt_mp0.tar: 36%|███▋ | 3.02G/8.31G [00:17<00:29, 193MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.04G/8.31G [00:17<00:29, 192MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.06G/8.31G [00:17<00:29, 192MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.08G/8.31G [00:17<00:29, 192MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.10G/8.31G [00:18<00:29, 192MB/s]
Downloading best_ckpt_mp0.tar: 37%|███▋ | 3.12G/8.31G [00:18<00:29, 191MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.13G/8.31G [00:18<00:29, 189MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.15G/8.31G [00:18<00:29, 188MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.17G/8.31G [00:18<00:29, 190MB/s]
Downloading best_ckpt_mp0.tar: 38%|███▊ | 3.19G/8.31G [00:18<00:28, 191MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▊ | 3.21G/8.31G [00:18<00:28, 192MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉ | 3.23G/8.31G [00:18<00:28, 192MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉ | 3.25G/8.31G [00:18<00:28, 191MB/s]
Downloading best_ckpt_mp0.tar: 39%|███▉ | 3.27G/8.31G [00:19<00:28, 191MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉ | 3.29G/8.31G [00:19<00:28, 191MB/s]
Downloading best_ckpt_mp0.tar: 40%|███▉ | 3.31G/8.31G [00:19<00:28, 191MB/s]
Downloading best_ckpt_mp0.tar: 40%|████ | 3.33G/8.31G [00:19<00:28, 188MB/s]
Downloading best_ckpt_mp0.tar: 40%|████ | 3.35G/8.31G [00:19<00:28, 189MB/s]
Downloading best_ckpt_mp0.tar: 41%|████ | 3.37G/8.31G [00:19<00:27, 190MB/s]
Downloading best_ckpt_mp0.tar: 41%|████ | 3.39G/8.31G [00:19<00:28, 188MB/s]
Downloading best_ckpt_mp0.tar: 41%|████ | 3.41G/8.31G [00:19<00:28, 188MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏ | 3.43G/8.31G [00:19<00:27, 190MB/s]
Downloading best_ckpt_mp0.tar: 41%|████▏ | 3.45G/8.31G [00:20<00:27, 191MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.47G/8.31G [00:20<00:27, 191MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.49G/8.31G [00:20<00:27, 189MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.51G/8.31G [00:20<00:27, 190MB/s]
Downloading best_ckpt_mp0.tar: 42%|████▏ | 3.53G/8.31G [00:20<00:27, 190MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.54G/8.31G [00:20<00:26, 190MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.56G/8.31G [00:20<00:27, 187MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.58G/8.31G [00:20<00:27, 188MB/s]
Downloading best_ckpt_mp0.tar: 43%|████▎ | 3.60G/8.31G [00:20<00:26, 189MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▎ | 3.62G/8.31G [00:21<00:26, 190MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍ | 3.64G/8.31G [00:21<00:26, 191MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍ | 3.66G/8.31G [00:21<00:25, 192MB/s]
Downloading best_ckpt_mp0.tar: 44%|████▍ | 3.68G/8.31G [00:21<00:26, 189MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍ | 3.70G/8.31G [00:21<00:26, 189MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▍ | 3.72G/8.31G [00:21<00:25, 190MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌ | 3.74G/8.31G [00:21<00:25, 191MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌ | 3.76G/8.31G [00:21<00:25, 191MB/s]
Downloading best_ckpt_mp0.tar: 45%|████▌ | 3.78G/8.31G [00:21<00:25, 189MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌ | 3.80G/8.31G [00:22<00:25, 190MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌ | 3.82G/8.31G [00:22<00:25, 190MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▌ | 3.84G/8.31G [00:22<00:25, 191MB/s]
Downloading best_ckpt_mp0.tar: 46%|████▋ | 3.86G/8.31G [00:22<00:25, 190MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.88G/8.31G [00:22<00:25, 190MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.90G/8.31G [00:22<00:24, 191MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.92G/8.31G [00:22<00:24, 192MB/s]
Downloading best_ckpt_mp0.tar: 47%|████▋ | 3.94G/8.31G [00:22<00:24, 191MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 3.96G/8.31G [00:22<00:24, 192MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 3.97G/8.31G [00:22<00:24, 192MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 3.99G/8.31G [00:23<00:24, 190MB/s]
Downloading best_ckpt_mp0.tar: 48%|████▊ | 4.01G/8.31G [00:23<00:24, 190MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▊ | 4.03G/8.31G [00:23<00:24, 189MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.05G/8.31G [00:23<00:24, 189MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.07G/8.31G [00:23<00:23, 190MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.09G/8.31G [00:23<00:23, 191MB/s]
Downloading best_ckpt_mp0.tar: 49%|████▉ | 4.11G/8.31G [00:23<00:23, 192MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉ | 4.13G/8.31G [00:23<00:23, 193MB/s]
Downloading best_ckpt_mp0.tar: 50%|████▉ | 4.15G/8.31G [00:23<00:23, 193MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████ | 4.17G/8.31G [00:24<00:23, 192MB/s]
Downloading best_ckpt_mp0.tar: 50%|█████ | 4.19G/8.31G [00:24<00:23, 192MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████ | 4.21G/8.31G [00:24<00:23, 191MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████ | 4.23G/8.31G [00:24<00:22, 192MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████ | 4.25G/8.31G [00:24<00:22, 190MB/s]
Downloading best_ckpt_mp0.tar: 51%|█████▏ | 4.27G/8.31G [00:24<00:22, 190MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.29G/8.31G [00:24<00:23, 186MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.31G/8.31G [00:24<00:22, 188MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.33G/8.31G [00:24<00:22, 188MB/s]
Downloading best_ckpt_mp0.tar: 52%|█████▏ | 4.35G/8.31G [00:25<00:22, 188MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.37G/8.31G [00:25<00:22, 188MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.38G/8.31G [00:25<00:22, 188MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.40G/8.31G [00:25<00:22, 184MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.42G/8.31G [00:25<00:22, 186MB/s]
Downloading best_ckpt_mp0.tar: 53%|█████▎ | 4.44G/8.31G [00:25<00:22, 186MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▎ | 4.46G/8.31G [00:25<00:22, 187MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍ | 4.48G/8.31G [00:25<00:22, 186MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍ | 4.50G/8.31G [00:25<00:21, 187MB/s]
Downloading best_ckpt_mp0.tar: 54%|█████▍ | 4.52G/8.31G [00:26<00:21, 189MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍ | 4.54G/8.31G [00:26<00:21, 189MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▍ | 4.56G/8.31G [00:26<00:21, 191MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌ | 4.58G/8.31G [00:26<00:20, 192MB/s]
Downloading best_ckpt_mp0.tar: 55%|█████▌ | 4.60G/8.31G [00:26<00:20, 191MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌ | 4.62G/8.31G [00:26<00:20, 191MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌ | 4.64G/8.31G [00:26<00:20, 188MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▌ | 4.66G/8.31G [00:26<00:21, 183MB/s]
Downloading best_ckpt_mp0.tar: 56%|█████▋ | 4.68G/8.31G [00:26<00:21, 185MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.70G/8.31G [00:27<00:20, 187MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.72G/8.31G [00:27<00:20, 189MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.74G/8.31G [00:27<00:20, 189MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.76G/8.31G [00:27<00:20, 188MB/s]
Downloading best_ckpt_mp0.tar: 57%|█████▋ | 4.78G/8.31G [00:27<00:20, 186MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.79G/8.31G [00:27<00:20, 185MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.81G/8.31G [00:27<00:20, 187MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.83G/8.31G [00:27<00:19, 189MB/s]
Downloading best_ckpt_mp0.tar: 58%|█████▊ | 4.85G/8.31G [00:27<00:19, 191MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▊ | 4.87G/8.31G [00:28<00:19, 192MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.89G/8.31G [00:28<00:19, 192MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.91G/8.31G [00:28<00:19, 191MB/s]
Downloading best_ckpt_mp0.tar: 59%|█████▉ | 4.93G/8.31G [00:28<00:18, 191MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉ | 4.95G/8.31G [00:28<00:19, 190MB/s]
Downloading best_ckpt_mp0.tar: 60%|█████▉ | 4.97G/8.31G [00:28<00:19, 187MB/s]
Downloading best_ckpt_mp0.tar: 60%|██████ | 4.99G/8.31G [00:28<00:19, 186MB/s]
Downloading best_ckpt_mp0.tar: 60%|██████ | 5.01G/8.31G [00:28<00:19, 186MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.03G/8.31G [00:29<00:18, 185MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.05G/8.31G [00:29<00:19, 184MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.07G/8.31G [00:29<00:18, 187MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████ | 5.09G/8.31G [00:29<00:18, 189MB/s]
Downloading best_ckpt_mp0.tar: 61%|██████▏ | 5.11G/8.31G [00:29<00:18, 190MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.13G/8.31G [00:29<00:17, 191MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.15G/8.31G [00:29<00:17, 191MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.17G/8.31G [00:29<00:17, 190MB/s]
Downloading best_ckpt_mp0.tar: 62%|██████▏ | 5.19G/8.31G [00:29<00:18, 186MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.21G/8.31G [00:30<00:17, 186MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.22G/8.31G [00:30<00:17, 187MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.24G/8.31G [00:30<00:17, 188MB/s]
Downloading best_ckpt_mp0.tar: 63%|██████▎ | 5.26G/8.31G [00:30<00:17, 189MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▎ | 5.28G/8.31G [00:30<00:17, 190MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍ | 5.30G/8.31G [00:30<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍ | 5.32G/8.31G [00:30<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 64%|██████▍ | 5.34G/8.31G [00:30<00:16, 191MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍ | 5.36G/8.31G [00:30<00:16, 192MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍ | 5.38G/8.31G [00:30<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▍ | 5.40G/8.31G [00:31<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌ | 5.42G/8.31G [00:31<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 65%|██████▌ | 5.44G/8.31G [00:31<00:16, 189MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌ | 5.46G/8.31G [00:31<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌ | 5.48G/8.31G [00:31<00:16, 190MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▌ | 5.50G/8.31G [00:31<00:15, 190MB/s]
Downloading best_ckpt_mp0.tar: 66%|██████▋ | 5.52G/8.31G [00:31<00:15, 190MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.54G/8.31G [00:31<00:15, 189MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.56G/8.31G [00:31<00:15, 189MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.58G/8.31G [00:32<00:15, 190MB/s]
Downloading best_ckpt_mp0.tar: 67%|██████▋ | 5.60G/8.31G [00:32<00:15, 191MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.62G/8.31G [00:32<00:15, 192MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.63G/8.31G [00:32<00:14, 195MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.65G/8.31G [00:32<00:14, 196MB/s]
Downloading best_ckpt_mp0.tar: 68%|██████▊ | 5.67G/8.31G [00:32<00:14, 195MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▊ | 5.69G/8.31G [00:32<00:14, 198MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.71G/8.31G [00:32<00:14, 198MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.73G/8.31G [00:32<00:13, 198MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.75G/8.31G [00:33<00:13, 196MB/s]
Downloading best_ckpt_mp0.tar: 69%|██████▉ | 5.77G/8.31G [00:33<00:13, 199MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉ | 5.79G/8.31G [00:33<00:13, 199MB/s]
Downloading best_ckpt_mp0.tar: 70%|██████▉ | 5.81G/8.31G [00:33<00:13, 198MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████ | 5.83G/8.31G [00:33<00:13, 199MB/s]
Downloading best_ckpt_mp0.tar: 70%|███████ | 5.85G/8.31G [00:33<00:13, 197MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.87G/8.31G [00:33<00:13, 194MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.89G/8.31G [00:33<00:13, 192MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████ | 5.91G/8.31G [00:33<00:13, 192MB/s]
Downloading best_ckpt_mp0.tar: 71%|███████▏ | 5.93G/8.31G [00:34<00:13, 188MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 5.95G/8.31G [00:34<00:13, 189MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 5.97G/8.31G [00:34<00:13, 190MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 5.99G/8.31G [00:34<00:13, 190MB/s]
Downloading best_ckpt_mp0.tar: 72%|███████▏ | 6.01G/8.31G [00:34<00:12, 190MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.03G/8.31G [00:34<00:12, 190MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.04G/8.31G [00:34<00:12, 190MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.06G/8.31G [00:34<00:12, 189MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.08G/8.31G [00:34<00:12, 190MB/s]
Downloading best_ckpt_mp0.tar: 73%|███████▎ | 6.10G/8.31G [00:35<00:12, 187MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▎ | 6.12G/8.31G [00:35<00:12, 188MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍ | 6.14G/8.31G [00:35<00:12, 189MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍ | 6.16G/8.31G [00:35<00:12, 180MB/s]
Downloading best_ckpt_mp0.tar: 74%|███████▍ | 6.18G/8.31G [00:35<00:13, 175MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍ | 6.20G/8.31G [00:35<00:12, 176MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▍ | 6.22G/8.31G [00:35<00:12, 179MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌ | 6.24G/8.31G [00:35<00:12, 182MB/s]
Downloading best_ckpt_mp0.tar: 75%|███████▌ | 6.26G/8.31G [00:35<00:11, 185MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌ | 6.28G/8.31G [00:36<00:11, 187MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌ | 6.30G/8.31G [00:36<00:11, 188MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▌ | 6.32G/8.31G [00:36<00:11, 188MB/s]
Downloading best_ckpt_mp0.tar: 76%|███████▋ | 6.34G/8.31G [00:36<00:11, 187MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.36G/8.31G [00:36<00:11, 189MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.38G/8.31G [00:36<00:10, 189MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.40G/8.31G [00:36<00:10, 190MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.42G/8.31G [00:36<00:10, 189MB/s]
Downloading best_ckpt_mp0.tar: 77%|███████▋ | 6.44G/8.31G [00:36<00:11, 178MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.46G/8.31G [00:37<00:11, 180MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.47G/8.31G [00:37<00:10, 182MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.49G/8.31G [00:37<00:10, 179MB/s]
Downloading best_ckpt_mp0.tar: 78%|███████▊ | 6.51G/8.31G [00:37<00:10, 182MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▊ | 6.53G/8.31G [00:37<00:10, 184MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉ | 6.55G/8.31G [00:37<00:10, 186MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉ | 6.57G/8.31G [00:37<00:09, 187MB/s]
Downloading best_ckpt_mp0.tar: 79%|███████▉ | 6.59G/8.31G [00:37<00:09, 188MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉ | 6.61G/8.31G [00:37<00:09, 183MB/s]
Downloading best_ckpt_mp0.tar: 80%|███████▉ | 6.63G/8.31G [00:38<00:10, 180MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████ | 6.65G/8.31G [00:38<00:09, 183MB/s]
Downloading best_ckpt_mp0.tar: 80%|████████ | 6.67G/8.31G [00:38<00:09, 186MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.69G/8.31G [00:38<00:09, 188MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.71G/8.31G [00:38<00:09, 188MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.73G/8.31G [00:38<00:10, 167MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████ | 6.75G/8.31G [00:38<00:11, 151MB/s]
Downloading best_ckpt_mp0.tar: 81%|████████▏ | 6.77G/8.31G [00:39<00:10, 157MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.79G/8.31G [00:39<00:09, 166MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.81G/8.31G [00:39<00:09, 173MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.83G/8.31G [00:39<00:09, 176MB/s]
Downloading best_ckpt_mp0.tar: 82%|████████▏ | 6.85G/8.31G [00:39<00:08, 179MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.87G/8.31G [00:39<00:08, 183MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.88G/8.31G [00:39<00:08, 184MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.90G/8.31G [00:39<00:08, 184MB/s]
Downloading best_ckpt_mp0.tar: 83%|████████▎ | 6.92G/8.31G [00:39<00:07, 187MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▎ | 6.94G/8.31G [00:40<00:07, 188MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 6.96G/8.31G [00:40<00:07, 189MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 6.98G/8.31G [00:40<00:07, 190MB/s]
Downloading best_ckpt_mp0.tar: 84%|████████▍ | 7.00G/8.31G [00:40<00:07, 190MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.02G/8.31G [00:40<00:07, 191MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.04G/8.31G [00:40<00:07, 191MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▍ | 7.06G/8.31G [00:40<00:07, 190MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.08G/8.31G [00:40<00:06, 191MB/s]
Downloading best_ckpt_mp0.tar: 85%|████████▌ | 7.10G/8.31G [00:40<00:06, 190MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.12G/8.31G [00:41<00:06, 184MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.14G/8.31G [00:41<00:06, 185MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▌ | 7.16G/8.31G [00:41<00:06, 186MB/s]
Downloading best_ckpt_mp0.tar: 86%|████████▋ | 7.18G/8.31G [00:41<00:06, 187MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.20G/8.31G [00:41<00:06, 185MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.22G/8.31G [00:41<00:06, 185MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.24G/8.31G [00:41<00:06, 186MB/s]
Downloading best_ckpt_mp0.tar: 87%|████████▋ | 7.26G/8.31G [00:41<00:06, 188MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.28G/8.31G [00:41<00:05, 188MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.29G/8.31G [00:42<00:05, 189MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.31G/8.31G [00:42<00:05, 190MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.33G/8.31G [00:42<00:05, 191MB/s]
Downloading best_ckpt_mp0.tar: 88%|████████▊ | 7.35G/8.31G [00:42<00:05, 191MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▊ | 7.37G/8.31G [00:42<00:05, 191MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.39G/8.31G [00:42<00:08, 117MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.41G/8.31G [00:42<00:07, 129MB/s]
Downloading best_ckpt_mp0.tar: 89%|████████▉ | 7.43G/8.31G [00:43<00:06, 141MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.45G/8.31G [00:43<00:06, 153MB/s]
Downloading best_ckpt_mp0.tar: 90%|████████▉ | 7.47G/8.31G [00:43<00:05, 163MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.49G/8.31G [00:43<00:05, 171MB/s]
Downloading best_ckpt_mp0.tar: 90%|█████████ | 7.51G/8.31G [00:43<00:04, 177MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.53G/8.31G [00:43<00:04, 181MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.55G/8.31G [00:43<00:04, 182MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████ | 7.57G/8.31G [00:43<00:04, 186MB/s]
Downloading best_ckpt_mp0.tar: 91%|█████████▏| 7.59G/8.31G [00:43<00:04, 187MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.61G/8.31G [00:44<00:03, 188MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.63G/8.31G [00:44<00:03, 190MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.65G/8.31G [00:44<00:03, 191MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.67G/8.31G [00:44<00:03, 192MB/s]
Downloading best_ckpt_mp0.tar: 92%|█████████▏| 7.69G/8.31G [00:44<00:03, 192MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.71G/8.31G [00:44<00:03, 193MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.72G/8.31G [00:44<00:03, 192MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.74G/8.31G [00:44<00:03, 189MB/s]
Downloading best_ckpt_mp0.tar: 93%|█████████▎| 7.76G/8.31G [00:44<00:03, 190MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▎| 7.78G/8.31G [00:45<00:02, 188MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.80G/8.31G [00:45<00:02, 189MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.82G/8.31G [00:45<00:02, 190MB/s]
Downloading best_ckpt_mp0.tar: 94%|█████████▍| 7.84G/8.31G [00:45<00:02, 189MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.86G/8.31G [00:45<00:02, 189MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▍| 7.88G/8.31G [00:45<00:02, 188MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.90G/8.31G [00:45<00:02, 189MB/s]
Downloading best_ckpt_mp0.tar: 95%|█████████▌| 7.92G/8.31G [00:45<00:02, 190MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.94G/8.31G [00:45<00:02, 189MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.96G/8.31G [00:46<00:01, 190MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▌| 7.98G/8.31G [00:46<00:01, 189MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▋| 8.00G/8.31G [00:46<00:01, 189MB/s]
Downloading best_ckpt_mp0.tar: 96%|█████████▋| 8.02G/8.31G [00:46<00:01, 187MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.04G/8.31G [00:46<00:01, 187MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.06G/8.31G [00:46<00:01, 188MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.08G/8.31G [00:46<00:01, 190MB/s]
Downloading best_ckpt_mp0.tar: 97%|█████████▋| 8.10G/8.31G [00:46<00:01, 190MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.12G/8.31G [00:46<00:01, 191MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.13G/8.31G [00:46<00:00, 192MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.15G/8.31G [00:47<00:00, 191MB/s]
Downloading best_ckpt_mp0.tar: 98%|█████████▊| 8.17G/8.31G [00:47<00:00, 192MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▊| 8.19G/8.31G [00:47<00:00, 190MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.21G/8.31G [00:47<00:00, 191MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.23G/8.31G [00:47<00:00, 191MB/s]
Downloading best_ckpt_mp0.tar: 99%|█████████▉| 8.25G/8.31G [00:47<00:00, 191MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.27G/8.31G [00:47<00:00, 191MB/s]
Downloading best_ckpt_mp0.tar: 100%|█████████▉| 8.29G/8.31G [00:47<00:00, 190MB/s]
Downloading best_ckpt_mp0.tar: 100%|██████████| 8.31G/8.31G [00:47<00:00, 189MB/s]
Downloading best_ckpt_mp0.tar: 100%|██████████| 8.31G/8.31G [00:47<00:00, 186MB/s]
2025-05-15 03:21:29.953 | INFO | earth2studio.run:ensemble:315 - Running ensemble inference!
2025-05-15 03:21:29.953 | INFO | earth2studio.run:ensemble:323 - Inference device: cuda
Fetching GFS data: 0%| | 0/74 [00:00<?, ?it/s]
2025-05-15 03:21:31.192 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.216 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.238 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.261 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.283 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.306 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.329 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.352 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.374 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.397 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.419 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.442 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.465 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.487 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.509 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.532 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.554 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.577 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.599 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.622 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.644 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.667 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.689 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.711 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.733 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.755 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.777 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.799 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.822 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.844 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.866 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.889 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.911 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.934 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.957 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:31.979 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.001 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.023 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.045 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.067 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.089 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.111 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.134 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.156 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.178 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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]
2025-05-15 03:21:32.201 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.224 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.246 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.268 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.290 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.312 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.334 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.357 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.380 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.402 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.425 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.448 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.470 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.493 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.516 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.538 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.560 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.583 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.605 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.627 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.648 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.670 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.693 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.715 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.738 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.760 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.782 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.805 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
2025-05-15 03:21:32.827 | DEBUG | earth2studio.data.gfs:fetch_array:352 - 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:01<?, ?it/s]
Fetching GFS data: 1%|▏ | 1/74 [00:01<02:01, 1.66s/it]
Fetching GFS data: 100%|██████████| 74/74 [00:01<00:00, 44.63it/s]
2025-05-15 03:21:33.023 | SUCCESS | earth2studio.run:ensemble:345 - Fetched data from GFS
2025-05-15 03:21:33.030 | WARNING | earth2studio.io.zarr:add_array:192 - Datetime64 not supported in zarr 3.0, converting to int64 nanoseconds since epoch
2025-05-15 03:21:33.036 | WARNING | earth2studio.io.zarr:add_array:198 - Timedelta64 not supported in zarr 3.0, converting to int64 nanoseconds since epoch
2025-05-15 03:21:33.059 | INFO | earth2studio.run:ensemble:367 - 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]
2025-05-15 03:21:33.074 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 183507493-913609
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.097 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 214401793-605228
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.120 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 247139652-717479
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.142 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167248172-739678
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.164 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 212236463-1187155
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.187 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 352251507-938982
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.210 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 388958699-1221367
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.233 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410028724-962181
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.256 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193820670-578278
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.278 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 408062467-879185
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.300 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 0-1031836
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.323 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 188158210-757568
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.346 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 328218119-898804
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.369 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193097116-578707
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.391 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 358255541-950771
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.413 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 201444244-1166535
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.436 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273134252-842380
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.459 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 355472229-1239204
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.483 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203402796-589859
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.506 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 200175442-1167472
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.529 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 172983015-919489
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.552 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208774754-755459
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.575 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 164520517-765194
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.597 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 278865492-888548
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.620 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178922087-749074
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.642 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 329654990-1225009
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.665 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 191094271-1176950
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.687 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 329116923-847018
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.709 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 186591756-1053680
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.731 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 171310346-917594
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.753 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 326166249-1225442
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.776 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 275180657-890286
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.799 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 351476990-852387
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.821 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 397402829-996456
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.844 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236647942-590553
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.867 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 274408443-1223885
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.890 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 182403895-973883
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.912 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 180172685-913532
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.935 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 413569354-967478
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.957 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 0-998436
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:33.979 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 281281791-898336
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:34.001 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 203992655-596596
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:34.023 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 188024992-754829
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:34.045 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150405231-492889
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:00<?, ?it/s]
2025-05-15 03:21:34.067 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 163781343-739174
Fetching GFS data: 0%| | 0/296 [00:00<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.089 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204118947-720169
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.112 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 421300034-1181973
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.135 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 184623371-911795
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.157 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 180472580-1170586
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.180 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 168789447-980831
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.202 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 167987850-767526
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.225 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 226457235-723507
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.247 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 193241168-579502
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.269 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293067730-844758
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.291 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194353089-579580
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.313 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 360780804-942376
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.336 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 335908328-940530
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.358 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 410138186-925503
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.380 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 169090127-920171
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.403 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 176434139-1041731
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.426 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 292088625-1244938
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.449 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 203498423-589842
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.471 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 272495637-727089
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.494 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 215757651-606283
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.516 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 169411507-1139754
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.538 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 146062919-744726
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.561 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 257413354-553231
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.583 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 385279214-852759
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.605 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 458443991-962968
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.628 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 179198897-973788
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.650 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 144283406-743766
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.673 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214779600-623304
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.694 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 205351099-596883
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.716 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301984473-889315
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.738 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199346060-588823
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.760 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 420029701-1181204
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.783 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 409589953-513282
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.805 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359046224-949853
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.828 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 189450163-577835
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.850 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 353619033-939943
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.873 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 391722290-987401
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.895 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172991226-911247
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.917 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 198733171-727414
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.939 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268878207-724790
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.961 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 250614479-803472
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:34.984 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 296442783-848791
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:35.006 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 165594251-738958
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:35.029 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 274285343-895314
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:35.051 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 391206752-950631
Fetching GFS data: 0%| | 0/296 [00:01<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:01<?, ?it/s]
2025-05-15 03:21:35.074 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 457464510-979481
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.096 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 204839116-753955
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.119 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 256868469-544885
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.141 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177921943-752161
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.163 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 148724824-1026834
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.185 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 176832054-736857
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.207 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 451628742-968328
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.229 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 293912488-745515
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.252 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 399119260-992978
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.275 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 149106074-462399
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.296 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 165935718-1138677
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.319 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 189979250-1176980
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.341 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 258516328-918758
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.363 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 166333209-766399
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.385 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 252556659-958137
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.408 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 387322476-948106
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.431 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 146298066-757068
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.453 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 0-1002356
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.475 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 386359113-963363
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.497 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 246334297-805355
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.519 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 229726800-817683
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.541 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 388773222-859658
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.564 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 193737151-726758
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.586 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151904457-465264
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.608 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 413380602-945786
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.629 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323956279-837771
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.651 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 197458039-726350
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.673 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 392065452-969982
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.696 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 231827443-572989
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.717 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 417602460-1179045
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.740 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 188547657-732362
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.762 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 210882735-1186600
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.784 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 270785488-1177846
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.807 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 387152087-1211521
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.830 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 274954839-840806
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.853 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 177568911-747761
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.875 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210217024-602993
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.897 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 346879212-932889
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.919 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 300299872-884864
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.942 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152534337-466715
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.963 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 399434135-840126
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:35.985 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 253514796-920355
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:36.007 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 455143487-973469
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:36.029 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 236071718-576224
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:36.051 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208928508-761990
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:02<?, ?it/s]
2025-05-15 03:21:36.073 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 215007021-618021
Fetching GFS data: 0%| | 0/296 [00:02<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.095 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 404382959-913875
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.118 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 390243670-963082
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.140 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 178183898-738189
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.163 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 199934883-595444
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.185 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 145318799-1019625
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.208 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 354932182-856465
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.230 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 198088880-741667
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.253 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 148613430-492644
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.275 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 280441333-889661
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.297 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 397639332-840040
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.320 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 350547115-929875
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.342 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 150898120-463977
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.365 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 145304873-758046
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.387 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 402321768-876246
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.410 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 148091792-1031496
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.432 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 401150630-841557
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.455 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 412411490-969112
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.477 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 194463909-743465
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.500 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 172072425-918801
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.522 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 204088265-596882
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.544 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 330695860-846471
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.567 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230071239-818111
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.590 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 393705863-838502
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.612 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 329799511-896349
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.635 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 330670600-938837
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.658 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 407776106-914088
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.680 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 167362967-767433
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.703 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 411298483-922437
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.725 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 252718154-803297
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.748 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 414179964-1179422
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.771 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 410990905-942963
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.793 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 390660597-1219295
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.815 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 381424372-852801
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.837 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 456116956-963873
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.859 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 326532594-890776
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.882 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 259087914-916036
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.904 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 297291574-754222
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.927 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 230889350-725457
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.949 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 357316538-939003
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.972 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 0-993995
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:36.994 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 249098202-1262404
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:37.016 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 353761167-1225423
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:37.039 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 334970306-938022
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:03<?, ?it/s]
2025-05-15 03:21:37.061 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 359996077-949678
Fetching GFS data: 0%| | 0/296 [00:03<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.084 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 254001564-1267820
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.107 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 237907755-575171
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.129 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 357218775-1228059
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.152 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 406073657-506593
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.173 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 147055134-746039
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.196 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 275795645-726593
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.218 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 252034627-722839
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.241 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 323061199-895080
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.263 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174160271-736006
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.286 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 253388728-1269329
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.309 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 152040961-493376
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.331 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 302819301-896743
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.354 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 253521451-719382
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.376 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 406629528-962408
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.399 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 173902504-907905
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.421 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 332945430-1359233
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.444 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 347812101-849637
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.467 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 177186467-735476
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.490 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 172227940-905153
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.512 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 275899947-1309015
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.536 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 277968948-896544
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.558 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 211043451-1192232
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.581 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184782162-755841
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.602 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 334185945-934655
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.625 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 232267599-726560
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.647 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 200082859-1168749
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.670 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 184050412-731750
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.694 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 216363934-618291
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.717 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 257599990-916338
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.740 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 190027998-577814
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.762 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 143527711-755695
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.785 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 198184389-747202
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.808 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 393767669-968511
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.830 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 236529889-574678
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.852 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 208052937-721817
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.875 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 329739828-930772
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.897 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 414536832-944207
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.919 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 147686885-749156
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.942 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 232400432-586007
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.964 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 289307267-851916
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:37.987 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 260003950-922575
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:38.010 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 210135611-756844
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:38.033 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 273976632-728286
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:38.055 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 296555652-890544
Fetching GFS data: 0%| | 0/296 [00:04<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:04<?, ?it/s]
2025-05-15 03:21:38.078 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 208203900-724608
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.101 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 299224343-1245614
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.124 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 189840662-1179194
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.147 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 228474082-1138597
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.170 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 303716044-887380
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.192 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 231450583-817016
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.215 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 295547922-758800
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.239 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 299407315-892557
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.263 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 194932669-578572
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.286 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 387075654-860051
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.309 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 354558976-950206
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.333 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 214171943-607657
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.355 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 271656637-839000
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.378 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 146927534-759351
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.400 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 199460585-743054
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.423 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 383286081-1212507
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.447 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 183650695-972676
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.470 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 277722016-1226189
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.494 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 393035434-953486
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.517 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 230544483-732296
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.539 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 459841403-963517
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.561 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 336687879-934577
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.584 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 361723180-950913
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.607 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 301084617-899856
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.630 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 251417951-723202
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.653 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 193675823-578990
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.674 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 147098312-1020507
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.697 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 295659093-896559
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.719 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 174896277-746582
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.742 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 179476202-1048997
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.765 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 458864763-976640
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.788 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 282180127-893274
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.812 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 209414924-720687
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.835 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 197360802-728078
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.858 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 204760966-590133
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.881 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 237104567-587286
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.903 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 187292486-732506
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.925 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 232918171-1262978
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.948 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 210820017-615282
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.970 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 166625127-737840
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:38.993 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 394736180-951384
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:39.017 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 189280019-753310
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:39.039 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 251230645-803982
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:05<?, ?it/s]
2025-05-15 03:21:39.062 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 297490896-1247432
Fetching GFS data: 0%| | 0/296 [00:05<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.085 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 182534428-973065
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.107 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 333255379-930566
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.130 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 255488233-1268872
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.152 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 353190489-858785
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.175 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 268038708-839499
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.197 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 206944850-1065961
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.220 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 232576858-1266241
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.243 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 337622456-936189
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.266 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 183377778-912918
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.289 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 350072351-1232650
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.312 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 187427126-731084
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.335 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 234294213-1264469
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.358 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 294691465-856457
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.380 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 452597070-961302
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.402 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 225640684-816551
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.424 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 395625686-986980
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.448 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 238482926-588964
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.470 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 279542923-898410
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.492 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 407591936-940269
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.514 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 290159183-752827
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.536 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 151411717-492740
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.558 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 327423370-840295
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.580 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/06/atmos/gfs.t06z.pgrb2.0p25.f000 295820475-1242797
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.604 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/12/atmos/gfs.t12z.pgrb2.0p25.f000 353999639-932543
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.626 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 179108822-1168912
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.649 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 331362340-1232012
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.671 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 170010298-904882
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.694 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20240101/00/atmos/gfs.t00z.pgrb2.0p25.f000 196462617-1008822
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
2025-05-15 03:21:39.717 | DEBUG | earth2studio.data.gfs:fetch_array:352 - Fetching GFS grib file: noaa-gfs-bdp-pds/gfs.20231231/18/atmos/gfs.t18z.pgrb2.0p25.f000 167747263-1134797
Fetching GFS data: 0%| | 0/296 [00:06<?, ?it/s]
Total Ensemble Batches: 0%| | 0/2 [00:06<?, ?it/s]
Fetching GFS data: 0%| | 1/296 [00:06<32:46, 6.67s/it]
Fetching GFS data: 100%|██████████| 296/296 [00:06<00:00, 44.40it/s]
Running batch 0 inference: 0%| | 0/5 [00:00<?, ?it/s]
Running batch 0 inference: 20%|██ | 1/5 [00:00<00:00, 5.04it/s]
Running batch 0 inference: 40%|████ | 2/5 [00:01<00:02, 1.17it/s]
Running batch 0 inference: 60%|██████ | 3/5 [00:02<00:02, 1.07s/it]
Running batch 0 inference: 80%|████████ | 4/5 [00:04<00:01, 1.17s/it]
Running batch 0 inference: 100%|██████████| 5/5 [00:05<00:00, 1.23s/it]
Total Ensemble Batches: 50%|█████ | 1/2 [00:24<00:24, 24.55s/it]
Running batch 1 inference: 0%| | 0/5 [00:00<?, ?it/s]
Running batch 1 inference: 20%|██ | 1/5 [00:00<00:01, 3.93it/s]
Running batch 1 inference: 40%|████ | 2/5 [00:01<00:02, 1.13it/s]
Running batch 1 inference: 60%|██████ | 3/5 [00:02<00:02, 1.08s/it]
Running batch 1 inference: 80%|████████ | 4/5 [00:04<00:01, 1.17s/it]
Running batch 1 inference: 100%|██████████| 5/5 [00:05<00:00, 1.22s/it]
Total Ensemble Batches: 100%|██████████| 2/2 [00:30<00:00, 13.35s/it]
Total Ensemble Batches: 100%|██████████| 2/2 [00:30<00:00, 15.03s/it]
2025-05-15 03:22:03.125 | SUCCESS | earth2studio.run:ensemble:412 - Inference complete
/
├── ensemble (2,) int64
├── lat (721,) float64
├── lead_time (5,) int64
├── lon (1440,) float64
├── time (1,) int64
├── 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")

Total running time of the script: (4 minutes 13.522 seconds)