Running Atlas Inference¶
Deterministic inference using the Atlas prognostic model.
This example demonstrates how to run a single-member forecast using the Atlas model, a generative AI weather model that uses stochastic interpolants and autoencoders to produce 6-hour forecasts on a 0.25 degree global grid. Atlas requires two input lead times (t-6h and t) and maintains an internal latent state for autoregressive rollouts.
In this example you will learn:
- How to instantiate the Atlas prognostic model
- How to run a single-member forecast with Atlas
- How to visualize predicted 10m u-wind and total column water vapour
We need the following:
- Prognostic Model: Use the Atlas model
earth2studio.models.px.Atlas. - Datasource: Pull data from the ARCO data source
earth2studio.data.ARCO. - IO Backend: Save the outputs into a Zarr store
earth2studio.io.ZarrBackend.
Note
Atlas requires two input lead times (t-6h and t) to produce a forecast.
The deterministic workflow handles this automatically via the model's
input_coords definition.
Warning
Atlas was trained on ERA5 data and in-filled NaNs in SST over landmasses with a value of 0 K using the ERA5 land-sea mask. If you are using a different SST dataset, you will need to in-fill the NaNs using the appropriate land-sea mask.
import os
os.makedirs("outputs", exist_ok=True)
# Performance optimization for Atlas model
# This is on by default in NGC containers, but other environments may need to set it manually.
os.environ["TORCH_ALLOW_TF32_CUBLAS_OVERRIDE"] = "1"
from dotenv import load_dotenv
load_dotenv() # TODO: make common example prep function
import numpy as np
import torch
from earth2studio.data import ARCO
from earth2studio.data.utils import fetch_data
from earth2studio.io import ZarrBackend
from earth2studio.models.px import Atlas
# Load the default model package which downloads the checkpoint from HuggingFace
package = Atlas.load_default_package()
model = Atlas.load_model(package)
# Create the data source
data = ARCO()
# Create the IO handler
io = ZarrBackend()
Console output1477 lines
/__w/earth2studio/earth2studio/.venv/lib/python3.13/site-packages/torch/cuda/__init__.py:64: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you.
import pynvml # type: ignore[import]
WARNING[XFORMERS]: xFormers can't load C++/CUDA extensions. xFormers was built for:
PyTorch 2.10.0+cu128 with CUDA 1208 (you have 2.13.0+cu130)
Python 3.10.19 (you have 3.13.13)
Please reinstall xformers (see https://github.com/facebookresearch/xformers#installing-xformers)
Memory-efficient attention, SwiGLU, sparse and more won't be available.
Set XFORMERS_MORE_DETAILS=1 for more details
CuPy distance computation test failed with error: cuVS >= 24.12 or pylibraft < 24.12 should be installed to use this feature
Downloading config.json: 0%| | 0.00/2.16k [00:00<?, ?B/s]
Downloading config.json: 100%|โโโโโโโโโโ| 2.16k/2.16k [00:00<00:00, 21.2kB/s]
Downloading config.json: 100%|โโโโโโโโโโ| 2.16k/2.16k [00:00<00:00, 21.0kB/s]
Downloading model_best.mdlus: 0%| | 0.00/7.38G [00:00<?, ?B/s]
Downloading model_best.mdlus: 0%| | 10.0M/7.38G [00:01<16:22, 8.06MB/s]
Downloading model_best.mdlus: 0%| | 20.0M/7.38G [00:01<11:31, 11.4MB/s]
Downloading model_best.mdlus: 0%| | 30.0M/7.38G [00:02<06:50, 19.2MB/s]
Downloading model_best.mdlus: 1%| | 50.0M/7.38G [00:02<03:37, 36.2MB/s]
Downloading model_best.mdlus: 1%| | 60.0M/7.38G [00:02<02:56, 44.5MB/s]
Downloading model_best.mdlus: 1%| | 80.0M/7.38G [00:02<02:04, 62.9MB/s]
Downloading model_best.mdlus: 1%|โ | 100M/7.38G [00:02<01:42, 76.5MB/s]
Downloading model_best.mdlus: 2%|โ | 120M/7.38G [00:02<01:28, 87.8MB/s]
Downloading model_best.mdlus: 2%|โ | 140M/7.38G [00:03<01:20, 96.3MB/s]
Downloading model_best.mdlus: 2%|โ | 160M/7.38G [00:03<01:14, 104MB/s]
Downloading model_best.mdlus: 2%|โ | 180M/7.38G [00:03<01:11, 109MB/s]
Downloading model_best.mdlus: 3%|โ | 200M/7.38G [00:03<01:08, 112MB/s]
Downloading model_best.mdlus: 3%|โ | 220M/7.38G [00:03<01:07, 114MB/s]
Downloading model_best.mdlus: 3%|โ | 240M/7.38G [00:03<01:05, 117MB/s]
Downloading model_best.mdlus: 3%|โ | 260M/7.38G [00:04<01:04, 118MB/s]
Downloading model_best.mdlus: 4%|โ | 280M/7.38G [00:04<01:04, 119MB/s]
Downloading model_best.mdlus: 4%|โ | 300M/7.38G [00:04<01:03, 119MB/s]
Downloading model_best.mdlus: 4%|โ | 320M/7.38G [00:04<01:02, 122MB/s]
Downloading model_best.mdlus: 4%|โ | 340M/7.38G [00:04<01:02, 121MB/s]
Downloading model_best.mdlus: 5%|โ | 360M/7.38G [00:04<01:02, 121MB/s]
Downloading model_best.mdlus: 5%|โ | 380M/7.38G [00:05<01:02, 120MB/s]
Downloading model_best.mdlus: 5%|โ | 400M/7.38G [00:05<01:01, 122MB/s]
Downloading model_best.mdlus: 6%|โ | 420M/7.38G [00:05<01:01, 122MB/s]
Downloading model_best.mdlus: 6%|โ | 440M/7.38G [00:05<01:01, 122MB/s]
Downloading model_best.mdlus: 6%|โ | 460M/7.38G [00:05<01:01, 121MB/s]
Downloading model_best.mdlus: 6%|โ | 480M/7.38G [00:05<01:00, 122MB/s]
Downloading model_best.mdlus: 7%|โ | 500M/7.38G [00:06<01:01, 120MB/s]
Downloading model_best.mdlus: 7%|โ | 520M/7.38G [00:06<01:01, 120MB/s]
Downloading model_best.mdlus: 7%|โ | 540M/7.38G [00:06<01:01, 120MB/s]
Downloading model_best.mdlus: 7%|โ | 560M/7.38G [00:06<01:00, 122MB/s]
Downloading model_best.mdlus: 8%|โ | 580M/7.38G [00:06<01:00, 122MB/s]
Downloading model_best.mdlus: 8%|โ | 600M/7.38G [00:07<00:59, 122MB/s]
Downloading model_best.mdlus: 8%|โ | 620M/7.38G [00:07<01:00, 121MB/s]
Downloading model_best.mdlus: 8%|โ | 640M/7.38G [00:07<00:59, 122MB/s]
Downloading model_best.mdlus: 9%|โ | 660M/7.38G [00:07<01:00, 119MB/s]
Downloading model_best.mdlus: 9%|โ | 680M/7.38G [00:07<01:01, 118MB/s]
Downloading model_best.mdlus: 9%|โ | 700M/7.38G [00:07<01:04, 112MB/s]
Downloading model_best.mdlus: 10%|โ | 720M/7.38G [00:08<01:03, 113MB/s]
Downloading model_best.mdlus: 10%|โ | 740M/7.38G [00:08<01:12, 98.6MB/s]
Downloading model_best.mdlus: 10%|โ | 750M/7.38G [00:08<01:11, 99.2MB/s]
Downloading model_best.mdlus: 10%|โ | 760M/7.38G [00:08<01:34, 75.5MB/s]
Downloading model_best.mdlus: 10%|โ | 770M/7.38G [00:08<01:31, 78.0MB/s]
Downloading model_best.mdlus: 10%|โ | 780M/7.38G [00:09<01:34, 75.4MB/s]
Downloading model_best.mdlus: 10%|โ | 790M/7.38G [00:09<01:33, 75.8MB/s]
Downloading model_best.mdlus: 11%|โ | 810M/7.38G [00:09<01:49, 64.5MB/s]
Downloading model_best.mdlus: 11%|โ | 830M/7.38G [00:09<01:34, 74.9MB/s]
Downloading model_best.mdlus: 11%|โ | 840M/7.38G [00:09<01:41, 69.1MB/s]
Downloading model_best.mdlus: 11%|โ | 850M/7.38G [00:10<01:40, 70.0MB/s]
Downloading model_best.mdlus: 11%|โโ | 860M/7.38G [00:10<01:35, 73.2MB/s]
Downloading model_best.mdlus: 12%|โโ | 870M/7.38G [00:10<01:38, 71.0MB/s]
Downloading model_best.mdlus: 12%|โโ | 890M/7.38G [00:10<01:36, 72.4MB/s]
Downloading model_best.mdlus: 12%|โโ | 900M/7.38G [00:10<01:51, 62.8MB/s]
Downloading model_best.mdlus: 12%|โโ | 920M/7.38G [00:11<01:39, 69.7MB/s]
Downloading model_best.mdlus: 12%|โโ | 940M/7.38G [00:11<01:34, 73.7MB/s]
Downloading model_best.mdlus: 13%|โโ | 950M/7.38G [00:11<02:00, 57.5MB/s]
Downloading model_best.mdlus: 13%|โโ | 960M/7.38G [00:11<01:58, 58.2MB/s]
Downloading model_best.mdlus: 13%|โโ | 980M/7.38G [00:12<01:36, 71.4MB/s]
Downloading model_best.mdlus: 13%|โโ | 0.98G/7.38G [00:12<01:30, 76.0MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.00G/7.38G [00:12<01:21, 84.3MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.01G/7.38G [00:12<01:39, 68.8MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.02G/7.38G [00:12<01:35, 71.5MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.03G/7.38G [00:13<01:44, 65.2MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.04G/7.38G [00:13<02:18, 49.3MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.04G/7.38G [00:13<01:59, 56.8MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.05G/7.38G [00:13<01:49, 61.9MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.06G/7.38G [00:14<02:12, 51.2MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.07G/7.38G [00:14<01:54, 59.3MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.08G/7.38G [00:14<02:00, 56.3MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.10G/7.38G [00:14<01:59, 56.4MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.12G/7.38G [00:15<02:01, 55.3MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.13G/7.38G [00:15<01:58, 56.5MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.14G/7.38G [00:15<01:50, 60.8MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.16G/7.38G [00:15<01:29, 74.4MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.18G/7.38G [00:15<01:19, 83.7MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.19G/7.38G [00:16<01:26, 76.9MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.21G/7.38G [00:16<01:47, 61.7MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.23G/7.38G [00:16<01:45, 62.7MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.24G/7.38G [00:17<01:51, 59.0MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.25G/7.38G [00:17<01:58, 55.8MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.27G/7.38G [00:17<01:35, 68.7MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.29G/7.38G [00:17<01:22, 79.2MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.31G/7.38G [00:17<01:14, 87.7MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.33G/7.38G [00:17<01:09, 93.5MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.35G/7.38G [00:18<01:05, 98.5MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.36G/7.38G [00:18<01:05, 98.3MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.38G/7.38G [00:18<01:03, 101MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.40G/7.38G [00:18<01:01, 105MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.42G/7.38G [00:18<01:00, 106MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.44G/7.38G [00:19<01:00, 106MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.46G/7.38G [00:19<01:04, 98.5MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.46G/7.38G [00:19<01:03, 99.3MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.47G/7.38G [00:19<01:13, 86.0MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.49G/7.38G [00:19<01:07, 93.4MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.50G/7.38G [00:19<01:13, 86.2MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.52G/7.38G [00:20<01:07, 93.6MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.54G/7.38G [00:20<01:08, 91.9MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.55G/7.38G [00:20<01:07, 92.5MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.56G/7.38G [00:20<01:13, 84.8MB/s]
Downloading model_best.mdlus: 21%|โโโ | 1.58G/7.38G [00:20<01:07, 92.9MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.60G/7.38G [00:21<01:03, 97.8MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.62G/7.38G [00:21<01:01, 101MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.63G/7.38G [00:21<01:06, 93.0MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.65G/7.38G [00:21<01:02, 98.0MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.66G/7.38G [00:21<01:05, 94.3MB/s]
Downloading model_best.mdlus: 23%|โโโ | 1.67G/7.38G [00:21<01:09, 87.9MB/s]
Downloading model_best.mdlus: 23%|โโโ | 1.68G/7.38G [00:22<01:21, 75.2MB/s]
Downloading model_best.mdlus: 23%|โโโ | 1.69G/7.38G [00:22<01:34, 64.6MB/s]
Downloading model_best.mdlus: 23%|โโโ | 1.71G/7.38G [00:22<01:33, 65.0MB/s]
Downloading model_best.mdlus: 23%|โโโ | 1.73G/7.38G [00:22<01:23, 72.7MB/s]
Downloading model_best.mdlus: 24%|โโโ | 1.75G/7.38G [00:23<01:28, 68.1MB/s]
Downloading model_best.mdlus: 24%|โโโ | 1.76G/7.38G [00:23<01:37, 61.9MB/s]
Downloading model_best.mdlus: 24%|โโโ | 1.77G/7.38G [00:23<01:31, 65.7MB/s]
Downloading model_best.mdlus: 24%|โโโ | 1.79G/7.38G [00:23<01:20, 75.0MB/s]
Downloading model_best.mdlus: 24%|โโโ | 1.81G/7.38G [00:24<01:19, 75.4MB/s]
Downloading model_best.mdlus: 25%|โโโ | 1.82G/7.38G [00:24<01:47, 55.6MB/s]
Downloading model_best.mdlus: 25%|โโโ | 1.83G/7.38G [00:24<01:53, 52.5MB/s]
Downloading model_best.mdlus: 25%|โโโ | 1.84G/7.38G [00:24<01:56, 51.0MB/s]
Downloading model_best.mdlus: 25%|โโโ | 1.85G/7.38G [00:25<01:56, 50.9MB/s]
Downloading model_best.mdlus: 25%|โโโ | 1.87G/7.38G [00:25<01:39, 59.8MB/s]
Downloading model_best.mdlus: 25%|โโโ | 1.88G/7.38G [00:25<01:44, 56.6MB/s]
Downloading model_best.mdlus: 26%|โโโ | 1.89G/7.38G [00:26<02:16, 43.2MB/s]
Downloading model_best.mdlus: 26%|โโโ | 1.91G/7.38G [00:26<02:35, 37.8MB/s]
Downloading model_best.mdlus: 26%|โโโ | 1.93G/7.38G [00:27<02:03, 47.3MB/s]
Downloading model_best.mdlus: 26%|โโโ | 1.94G/7.38G [00:27<02:04, 46.9MB/s]
Downloading model_best.mdlus: 26%|โโโ | 1.95G/7.38G [00:27<02:26, 39.9MB/s]
Downloading model_best.mdlus: 27%|โโโ | 1.96G/7.38G [00:28<02:39, 36.5MB/s]
Downloading model_best.mdlus: 27%|โโโ | 1.97G/7.38G [00:28<02:23, 40.4MB/s]
Downloading model_best.mdlus: 27%|โโโ | 1.99G/7.38G [00:28<01:58, 48.7MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.00G/7.38G [00:28<02:18, 41.6MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.02G/7.38G [00:29<01:56, 49.6MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.04G/7.38G [00:29<02:09, 44.3MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.05G/7.38G [00:29<01:56, 49.3MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.06G/7.38G [00:30<01:42, 56.0MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.07G/7.38G [00:30<01:42, 55.9MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.09G/7.38G [00:30<01:21, 69.6MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.10G/7.38G [00:30<01:20, 70.4MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.11G/7.38G [00:30<01:14, 76.5MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.13G/7.38G [00:30<01:11, 79.4MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.15G/7.38G [00:31<01:07, 83.0MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.17G/7.38G [00:31<01:08, 81.4MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.19G/7.38G [00:31<01:08, 81.1MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.21G/7.38G [00:31<01:03, 87.3MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.23G/7.38G [00:32<01:07, 81.6MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.25G/7.38G [00:32<01:02, 88.4MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.26G/7.38G [00:32<01:11, 77.5MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.28G/7.38G [00:32<01:03, 86.1MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.29G/7.38G [00:32<01:07, 81.6MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.29G/7.38G [00:33<01:04, 84.5MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.30G/7.38G [00:33<01:02, 87.0MB/s]
Downloading model_best.mdlus: 31%|โโโโ | 2.31G/7.38G [00:33<01:11, 76.0MB/s]
Downloading model_best.mdlus: 31%|โโโโ | 2.32G/7.38G [00:33<01:07, 79.9MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.33G/7.38G [00:33<01:10, 77.3MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.35G/7.38G [00:33<01:03, 84.9MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.37G/7.38G [00:34<00:58, 92.7MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.38G/7.38G [00:34<01:03, 85.1MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.39G/7.38G [00:34<01:21, 66.0MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.41G/7.38G [00:34<01:07, 79.2MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.42G/7.38G [00:34<01:03, 83.4MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.43G/7.38G [00:34<01:06, 79.8MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.44G/7.38G [00:35<01:18, 67.4MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.46G/7.38G [00:35<01:10, 75.3MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.47G/7.38G [00:35<01:34, 55.8MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 2.48G/7.38G [00:35<01:24, 62.6MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 2.50G/7.38G [00:36<01:09, 75.7MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 2.52G/7.38G [00:36<01:06, 78.6MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 2.54G/7.38G [00:36<01:11, 72.4MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 2.56G/7.38G [00:36<01:03, 81.4MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 2.57G/7.38G [00:36<01:04, 80.5MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 2.59G/7.38G [00:37<00:58, 88.7MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 2.61G/7.38G [00:37<00:53, 95.8MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 2.62G/7.38G [00:37<00:52, 97.1MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 2.63G/7.38G [00:37<00:53, 94.9MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 2.65G/7.38G [00:37<00:54, 93.3MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 2.66G/7.38G [00:37<00:53, 95.2MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 2.67G/7.38G [00:37<00:56, 89.7MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 2.68G/7.38G [00:38<00:55, 91.8MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 2.69G/7.38G [00:38<00:53, 94.4MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 2.70G/7.38G [00:38<01:05, 76.3MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 2.71G/7.38G [00:38<01:02, 80.8MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 2.72G/7.38G [00:38<00:57, 87.4MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 2.74G/7.38G [00:38<00:52, 95.5MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 2.75G/7.38G [00:39<00:54, 91.3MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.77G/7.38G [00:39<00:56, 88.1MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.78G/7.38G [00:39<00:58, 84.9MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.79G/7.38G [00:39<01:00, 80.9MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.80G/7.38G [00:39<00:57, 85.4MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.81G/7.38G [00:39<01:06, 74.1MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.82G/7.38G [00:39<01:01, 80.3MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 2.83G/7.38G [00:40<00:58, 83.5MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 2.85G/7.38G [00:40<00:56, 86.7MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 2.87G/7.38G [00:40<00:55, 87.1MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 2.88G/7.38G [00:40<01:09, 69.9MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 2.89G/7.38G [00:40<01:09, 69.7MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 2.90G/7.38G [00:41<01:03, 75.9MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 2.91G/7.38G [00:41<01:24, 57.2MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 2.93G/7.38G [00:41<01:07, 70.7MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 2.94G/7.38G [00:41<01:12, 65.6MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 2.96G/7.38G [00:41<01:01, 77.5MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 2.98G/7.38G [00:42<00:59, 79.9MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.00G/7.38G [00:42<00:53, 87.6MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.02G/7.38G [00:42<01:04, 72.4MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.04G/7.38G [00:43<01:01, 76.2MB/s]
Downloading model_best.mdlus: 41%|โโโโโ | 3.05G/7.38G [00:43<01:00, 77.3MB/s]
Downloading model_best.mdlus: 41%|โโโโโ | 3.06G/7.38G [00:43<00:58, 79.3MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.07G/7.38G [00:43<01:07, 68.9MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.08G/7.38G [00:43<01:01, 74.8MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.10G/7.38G [00:43<00:53, 85.8MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.12G/7.38G [00:44<00:49, 92.3MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.12G/7.38G [00:44<00:51, 88.6MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.13G/7.38G [00:44<00:50, 91.1MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.15G/7.38G [00:44<00:46, 98.1MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.17G/7.38G [00:44<00:44, 102MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.19G/7.38G [00:44<00:47, 94.5MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.20G/7.38G [00:45<00:46, 95.8MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.22G/7.38G [00:45<00:54, 81.7MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.23G/7.38G [00:45<01:00, 73.3MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.24G/7.38G [00:45<01:02, 70.6MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.25G/7.38G [00:45<01:13, 60.6MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.26G/7.38G [00:46<01:16, 58.1MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.27G/7.38G [00:46<01:22, 53.2MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 3.28G/7.38G [00:46<01:21, 54.4MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.29G/7.38G [00:46<01:14, 59.3MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.30G/7.38G [00:46<01:08, 64.0MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.31G/7.38G [00:47<01:13, 59.9MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.32G/7.38G [00:47<01:04, 67.5MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.33G/7.38G [00:47<00:59, 73.4MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.34G/7.38G [00:47<00:55, 78.1MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 3.35G/7.38G [00:47<01:01, 70.2MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 3.37G/7.38G [00:47<00:53, 80.5MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 3.38G/7.38G [00:47<00:59, 71.8MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 3.39G/7.38G [00:48<00:55, 77.5MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 3.41G/7.38G [00:48<00:51, 83.2MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 3.43G/7.38G [00:48<00:50, 84.6MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 3.44G/7.38G [00:48<00:58, 72.8MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 3.46G/7.38G [00:49<01:02, 67.6MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 3.48G/7.38G [00:49<00:54, 76.9MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 3.50G/7.38G [00:49<00:53, 78.7MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 3.51G/7.38G [00:49<00:56, 73.1MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 3.52G/7.38G [00:50<01:07, 61.6MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 3.53G/7.38G [00:50<01:01, 67.6MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 3.54G/7.38G [00:50<01:03, 65.3MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 3.55G/7.38G [00:50<00:53, 76.4MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 3.56G/7.38G [00:50<01:07, 60.5MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 3.58G/7.38G [00:50<00:55, 73.7MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 3.60G/7.38G [00:51<00:48, 83.8MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 3.61G/7.38G [00:51<00:49, 81.9MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 3.62G/7.38G [00:51<00:55, 73.1MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 3.63G/7.38G [00:51<00:54, 74.3MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 3.64G/7.38G [00:51<00:57, 70.3MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 3.66G/7.38G [00:52<01:00, 65.6MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 3.68G/7.38G [00:52<00:51, 77.5MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 3.69G/7.38G [00:52<00:54, 73.3MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 3.71G/7.38G [00:52<00:47, 83.8MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 3.72G/7.38G [00:52<00:45, 86.8MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 3.74G/7.38G [00:53<00:41, 94.4MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 3.75G/7.38G [00:53<00:42, 92.4MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 3.77G/7.38G [00:53<00:42, 91.0MB/s]
Downloading model_best.mdlus: 51%|โโโโโโ | 3.79G/7.38G [00:53<00:47, 81.3MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 3.81G/7.38G [00:53<00:43, 88.8MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 3.82G/7.38G [00:54<00:44, 86.2MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 3.84G/7.38G [00:54<00:40, 93.8MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 3.86G/7.38G [00:54<00:38, 97.9MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 3.88G/7.38G [00:54<00:39, 94.4MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 3.90G/7.38G [00:54<00:37, 99.6MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 3.92G/7.38G [00:55<00:36, 102MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 3.94G/7.38G [00:55<00:36, 102MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 3.95G/7.38G [00:55<00:36, 101MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 3.96G/7.38G [00:55<00:37, 97.3MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 3.97G/7.38G [00:55<00:38, 96.3MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 3.99G/7.38G [00:55<00:37, 97.8MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.00G/7.38G [00:56<00:38, 94.2MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.02G/7.38G [00:56<00:36, 98.8MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 4.03G/7.38G [00:56<00:41, 86.4MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 4.05G/7.38G [00:56<00:38, 93.3MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 4.07G/7.38G [00:56<00:36, 97.6MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 4.08G/7.38G [00:56<00:38, 92.0MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 4.10G/7.38G [00:57<00:35, 98.3MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 4.12G/7.38G [00:57<00:34, 102MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 4.14G/7.38G [00:57<00:33, 105MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 4.16G/7.38G [00:57<00:33, 104MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 4.17G/7.38G [00:57<00:33, 103MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 4.19G/7.38G [00:58<00:35, 97.4MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 4.20G/7.38G [00:58<00:34, 98.4MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 4.21G/7.38G [00:58<00:34, 99.3MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 4.22G/7.38G [00:58<00:34, 99.4MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 4.24G/7.38G [00:58<00:32, 103MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 4.26G/7.38G [00:58<00:31, 106MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 4.28G/7.38G [00:58<00:31, 105MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 4.30G/7.38G [00:59<00:41, 79.8MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 4.31G/7.38G [00:59<00:41, 80.2MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 4.32G/7.38G [00:59<00:44, 74.5MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 4.34G/7.38G [00:59<00:40, 81.1MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 4.35G/7.38G [00:59<00:38, 83.7MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 4.36G/7.38G [01:00<00:45, 71.2MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 4.37G/7.38G [01:00<00:42, 76.8MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 4.38G/7.38G [01:00<00:47, 68.3MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 4.39G/7.38G [01:00<00:41, 77.0MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 4.41G/7.38G [01:00<00:37, 86.0MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 4.43G/7.38G [01:01<00:40, 78.0MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 4.44G/7.38G [01:01<00:45, 69.1MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 4.45G/7.38G [01:01<00:44, 71.2MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 4.47G/7.38G [01:01<00:38, 81.8MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 4.49G/7.38G [01:01<00:34, 89.6MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 4.50G/7.38G [01:02<00:34, 89.2MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 4.52G/7.38G [01:02<00:33, 93.0MB/s]
Downloading model_best.mdlus: 61%|โโโโโโโ | 4.53G/7.38G [01:02<00:32, 94.8MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 4.55G/7.38G [01:02<00:33, 91.4MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 4.56G/7.38G [01:02<00:38, 78.5MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 4.57G/7.38G [01:02<00:36, 83.3MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 4.59G/7.38G [01:03<00:32, 92.0MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 4.61G/7.38G [01:03<00:30, 98.3MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 4.63G/7.38G [01:03<00:29, 101MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 4.64G/7.38G [01:03<00:29, 102MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 4.65G/7.38G [01:03<00:33, 88.1MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 4.66G/7.38G [01:03<00:34, 85.2MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 4.68G/7.38G [01:04<00:30, 94.1MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 4.69G/7.38G [01:04<00:33, 87.4MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 4.71G/7.38G [01:04<00:32, 88.7MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 4.72G/7.38G [01:04<00:31, 90.3MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 4.73G/7.38G [01:04<00:37, 76.5MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 4.74G/7.38G [01:04<00:35, 80.8MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 4.75G/7.38G [01:05<00:33, 83.7MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 4.76G/7.38G [01:05<00:39, 70.9MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 4.77G/7.38G [01:05<00:37, 74.9MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 4.78G/7.38G [01:05<00:35, 79.2MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 4.79G/7.38G [01:05<00:50, 55.6MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 4.80G/7.38G [01:05<00:38, 71.8MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 4.81G/7.38G [01:06<00:40, 68.5MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 4.83G/7.38G [01:06<00:33, 80.8MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 4.84G/7.38G [01:06<00:32, 83.9MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 4.85G/7.38G [01:06<00:31, 87.2MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 4.86G/7.38G [01:06<00:29, 90.7MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 4.87G/7.38G [01:06<00:34, 78.2MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 4.88G/7.38G [01:06<00:32, 82.5MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 4.90G/7.38G [01:07<00:28, 92.6MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 4.91G/7.38G [01:07<00:30, 88.0MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 4.93G/7.38G [01:07<00:28, 92.5MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 4.94G/7.38G [01:07<00:33, 79.3MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 4.95G/7.38G [01:07<00:34, 76.8MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 4.97G/7.38G [01:08<00:29, 87.1MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 4.99G/7.38G [01:08<00:27, 94.5MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 5.00G/7.38G [01:08<00:29, 85.3MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 5.02G/7.38G [01:08<00:26, 96.6MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 5.04G/7.38G [01:08<00:24, 101MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 5.06G/7.38G [01:08<00:23, 105MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 5.07G/7.38G [01:09<00:26, 94.9MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 5.08G/7.38G [01:09<00:26, 94.6MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 5.10G/7.38G [01:09<00:26, 92.7MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 5.12G/7.38G [01:09<00:25, 96.7MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 5.13G/7.38G [01:09<00:27, 87.3MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 5.15G/7.38G [01:10<00:25, 94.0MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 5.17G/7.38G [01:10<00:26, 89.8MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 5.18G/7.38G [01:10<00:27, 87.7MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 5.19G/7.38G [01:10<00:29, 78.7MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 5.21G/7.38G [01:10<00:28, 82.5MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 5.21G/7.38G [01:10<00:27, 84.0MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 5.22G/7.38G [01:11<00:40, 57.4MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 5.24G/7.38G [01:11<00:32, 69.9MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 5.25G/7.38G [01:11<00:46, 49.0MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโโ | 5.26G/7.38G [01:12<00:47, 48.2MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโโ | 5.27G/7.38G [01:12<00:44, 50.6MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 5.28G/7.38G [01:12<00:39, 56.5MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 5.30G/7.38G [01:12<00:31, 71.2MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 5.31G/7.38G [01:12<00:33, 67.3MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 5.32G/7.38G [01:12<00:30, 73.7MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 5.34G/7.38G [01:13<00:25, 86.1MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 5.36G/7.38G [01:13<00:22, 94.6MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 5.37G/7.38G [01:13<00:22, 95.5MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 5.38G/7.38G [01:13<00:22, 95.5MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 5.39G/7.38G [01:13<00:24, 89.1MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 5.41G/7.38G [01:13<00:23, 91.6MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 5.43G/7.38G [01:14<00:21, 99.1MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 5.44G/7.38G [01:14<00:23, 89.2MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 5.46G/7.38G [01:14<00:23, 86.8MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 5.48G/7.38G [01:14<00:21, 94.5MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 5.50G/7.38G [01:14<00:20, 99.4MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 5.52G/7.38G [01:15<00:19, 104MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 5.54G/7.38G [01:15<00:18, 107MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 5.56G/7.38G [01:15<00:18, 108MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 5.58G/7.38G [01:15<00:21, 89.8MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 5.60G/7.38G [01:15<00:20, 95.6MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 5.62G/7.38G [01:16<00:19, 99.8MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 5.63G/7.38G [01:16<00:18, 103MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 5.65G/7.38G [01:16<00:18, 103MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 5.67G/7.38G [01:16<00:17, 104MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 5.69G/7.38G [01:17<00:20, 90.6MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 5.70G/7.38G [01:17<00:24, 73.7MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 5.71G/7.38G [01:17<00:22, 78.0MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 5.72G/7.38G [01:17<00:22, 78.9MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 5.74G/7.38G [01:17<00:20, 85.7MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 5.75G/7.38G [01:17<00:22, 76.6MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 5.77G/7.38G [01:18<00:22, 76.9MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 5.78G/7.38G [01:18<00:21, 80.2MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 5.80G/7.38G [01:18<00:18, 90.2MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 5.81G/7.38G [01:18<00:20, 81.2MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 5.83G/7.38G [01:18<00:18, 90.4MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 5.84G/7.38G [01:18<00:17, 92.5MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 5.86G/7.38G [01:19<00:16, 99.9MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 5.88G/7.38G [01:19<00:17, 93.3MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 5.89G/7.38G [01:19<00:18, 84.9MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 5.90G/7.38G [01:19<00:18, 88.2MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 5.91G/7.38G [01:19<00:18, 87.8MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 5.93G/7.38G [01:19<00:16, 93.8MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 5.94G/7.38G [01:20<00:18, 85.9MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 5.96G/7.38G [01:20<00:16, 94.0MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 5.98G/7.38G [01:20<00:14, 101MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 6.00G/7.38G [01:20<00:16, 93.0MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโโ | 6.01G/7.38G [01:20<00:15, 94.2MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโโ | 6.02G/7.38G [01:21<00:16, 87.5MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 6.04G/7.38G [01:21<00:21, 66.7MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 6.04G/7.38G [01:21<00:22, 65.2MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 6.05G/7.38G [01:21<00:20, 68.4MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 6.06G/7.38G [01:22<00:27, 52.1MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 6.08G/7.38G [01:22<00:24, 57.2MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 6.09G/7.38G [01:22<00:24, 57.6MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 6.11G/7.38G [01:22<00:20, 67.3MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 6.12G/7.38G [01:23<00:20, 65.2MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 6.14G/7.38G [01:23<00:19, 69.2MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 6.16G/7.38G [01:23<00:18, 71.5MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 6.18G/7.38G [01:23<00:19, 66.4MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 6.19G/7.38G [01:24<00:20, 63.5MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 6.20G/7.38G [01:24<00:20, 63.1MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 6.22G/7.38G [01:24<00:20, 60.7MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.24G/7.38G [01:24<00:19, 61.7MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.25G/7.38G [01:25<00:19, 62.3MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.26G/7.38G [01:25<00:17, 67.9MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.27G/7.38G [01:25<00:18, 65.3MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.29G/7.38G [01:25<00:15, 73.9MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.30G/7.38G [01:25<00:17, 65.3MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 6.31G/7.38G [01:26<00:17, 66.1MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 6.32G/7.38G [01:26<00:16, 68.5MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 6.33G/7.38G [01:26<00:22, 50.4MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 6.35G/7.38G [01:26<00:16, 66.9MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 6.37G/7.38G [01:26<00:13, 79.1MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 6.38G/7.38G [01:27<00:14, 73.9MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 6.40G/7.38G [01:27<00:13, 76.0MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 6.41G/7.38G [01:27<00:13, 75.4MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 6.43G/7.38G [01:27<00:13, 77.6MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 6.44G/7.38G [01:27<00:13, 75.1MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 6.46G/7.38G [01:28<00:13, 76.3MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 6.47G/7.38G [01:28<00:12, 77.3MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 6.48G/7.38G [01:28<00:11, 81.3MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 6.49G/7.38G [01:28<00:11, 80.4MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 6.50G/7.38G [01:28<00:12, 75.2MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 6.51G/7.38G [01:29<00:17, 52.2MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 6.53G/7.38G [01:29<00:14, 62.5MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 6.55G/7.38G [01:29<00:12, 71.3MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 6.56G/7.38G [01:29<00:13, 65.9MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 6.58G/7.38G [01:30<00:11, 76.4MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 6.60G/7.38G [01:30<00:09, 85.8MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 6.62G/7.38G [01:30<00:09, 84.9MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 6.64G/7.38G [01:30<00:10, 76.1MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 6.66G/7.38G [01:31<00:11, 68.5MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 6.68G/7.38G [01:31<00:10, 73.6MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 6.69G/7.38G [01:31<00:11, 66.6MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 6.71G/7.38G [01:31<00:10, 68.7MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 6.72G/7.38G [01:32<00:11, 63.6MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโโ| 6.74G/7.38G [01:32<00:10, 67.5MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโโ| 6.75G/7.38G [01:32<00:11, 60.2MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 6.77G/7.38G [01:32<00:09, 71.6MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 6.79G/7.38G [01:33<00:08, 79.0MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 6.81G/7.38G [01:33<00:07, 88.0MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 6.82G/7.38G [01:33<00:07, 82.5MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 6.83G/7.38G [01:33<00:07, 83.8MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 6.84G/7.38G [01:33<00:06, 85.9MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 6.85G/7.38G [01:33<00:07, 80.6MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 6.86G/7.38G [01:33<00:07, 80.6MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 6.87G/7.38G [01:34<00:07, 76.7MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 6.88G/7.38G [01:34<00:08, 64.6MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 6.89G/7.38G [01:34<00:06, 77.8MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 6.90G/7.38G [01:34<00:06, 82.8MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 6.91G/7.38G [01:34<00:06, 82.2MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 6.93G/7.38G [01:35<00:06, 79.1MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 6.95G/7.38G [01:35<00:05, 77.8MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 6.97G/7.38G [01:35<00:06, 70.1MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 6.98G/7.38G [01:35<00:05, 74.2MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 6.99G/7.38G [01:35<00:05, 76.8MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 7.00G/7.38G [01:36<00:06, 63.1MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 7.01G/7.38G [01:36<00:05, 68.7MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 7.02G/7.38G [01:36<00:05, 73.7MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 7.03G/7.38G [01:36<00:04, 79.7MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 7.04G/7.38G [01:36<00:04, 84.6MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 7.05G/7.38G [01:36<00:04, 87.9MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 7.06G/7.38G [01:36<00:03, 90.4MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 7.07G/7.38G [01:36<00:03, 90.4MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 7.09G/7.38G [01:37<00:03, 94.3MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 7.10G/7.38G [01:37<00:03, 96.3MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 7.12G/7.38G [01:37<00:02, 102MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 7.14G/7.38G [01:37<00:02, 105MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 7.15G/7.38G [01:37<00:02, 104MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 7.16G/7.38G [01:37<00:02, 95.8MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 7.18G/7.38G [01:38<00:02, 100MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 7.19G/7.38G [01:38<00:02, 98.6MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 7.20G/7.38G [01:38<00:02, 93.4MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 7.21G/7.38G [01:38<00:02, 74.9MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 7.22G/7.38G [01:38<00:02, 80.8MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 7.23G/7.38G [01:38<00:02, 74.5MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 7.25G/7.38G [01:39<00:02, 65.3MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 7.26G/7.38G [01:39<00:01, 71.4MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.28G/7.38G [01:39<00:01, 83.9MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.29G/7.38G [01:39<00:01, 87.5MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.30G/7.38G [01:39<00:00, 90.4MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.31G/7.38G [01:40<00:01, 71.2MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.32G/7.38G [01:40<00:00, 73.3MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.33G/7.38G [01:40<00:00, 62.4MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 7.34G/7.38G [01:40<00:00, 62.4MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 7.35G/7.38G [01:40<00:00, 63.2MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 7.36G/7.38G [01:40<00:00, 68.4MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 7.38G/7.38G [01:41<00:00, 83.2MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 7.38G/7.38G [01:41<00:00, 78.4MB/s]
Downloading data_processor_best.mdlus: 0%| | 0.00/11.9M [00:00<?, ?B/s]
Downloading data_processor_best.mdlus: 84%|โโโโโโโโโ | 10.0M/11.9M [00:00<00:00, 19.5MB/s]
Downloading data_processor_best.mdlus: 100%|โโโโโโโโโโ| 11.9M/11.9M [00:00<00:00, 22.3MB/s]
Downloading model_best.mdlus: 0%| | 0.00/9.19G [00:00<?, ?B/s]
Downloading model_best.mdlus: 0%| | 10.0M/9.19G [00:01<16:49, 9.77MB/s]
Downloading model_best.mdlus: 0%| | 20.0M/9.19G [00:01<08:01, 20.5MB/s]
Downloading model_best.mdlus: 0%| | 30.0M/9.19G [00:01<05:10, 31.7MB/s]
Downloading model_best.mdlus: 0%| | 40.0M/9.19G [00:01<03:50, 42.7MB/s]
Downloading model_best.mdlus: 1%| | 50.0M/9.19G [00:01<03:05, 52.8MB/s]
Downloading model_best.mdlus: 1%| | 60.0M/9.19G [00:01<02:37, 62.2MB/s]
Downloading model_best.mdlus: 1%| | 70.0M/9.19G [00:01<02:22, 68.9MB/s]
Downloading model_best.mdlus: 1%| | 80.0M/9.19G [00:01<02:09, 75.5MB/s]
Downloading model_best.mdlus: 1%| | 90.0M/9.19G [00:01<02:02, 79.5MB/s]
Downloading model_best.mdlus: 1%| | 100M/9.19G [00:02<01:57, 83.0MB/s]
Downloading model_best.mdlus: 1%| | 110M/9.19G [00:02<01:53, 86.0MB/s]
Downloading model_best.mdlus: 1%|โ | 120M/9.19G [00:02<01:50, 88.2MB/s]
Downloading model_best.mdlus: 1%|โ | 130M/9.19G [00:02<01:48, 89.6MB/s]
Downloading model_best.mdlus: 1%|โ | 140M/9.19G [00:02<01:46, 91.0MB/s]
Downloading model_best.mdlus: 2%|โ | 150M/9.19G [00:02<01:45, 91.9MB/s]
Downloading model_best.mdlus: 2%|โ | 160M/9.19G [00:02<01:45, 92.4MB/s]
Downloading model_best.mdlus: 2%|โ | 170M/9.19G [00:02<01:45, 92.1MB/s]
Downloading model_best.mdlus: 2%|โ | 180M/9.19G [00:03<01:44, 92.5MB/s]
Downloading model_best.mdlus: 2%|โ | 190M/9.19G [00:03<01:52, 86.0MB/s]
Downloading model_best.mdlus: 2%|โ | 200M/9.19G [00:03<02:39, 60.4MB/s]
Downloading model_best.mdlus: 2%|โ | 210M/9.19G [00:03<02:37, 61.1MB/s]
Downloading model_best.mdlus: 2%|โ | 220M/9.19G [00:03<02:21, 68.0MB/s]
Downloading model_best.mdlus: 2%|โ | 230M/9.19G [00:03<02:34, 62.3MB/s]
Downloading model_best.mdlus: 3%|โ | 240M/9.19G [00:04<02:26, 65.5MB/s]
Downloading model_best.mdlus: 3%|โ | 250M/9.19G [00:04<02:18, 69.2MB/s]
Downloading model_best.mdlus: 3%|โ | 260M/9.19G [00:04<02:45, 58.0MB/s]
Downloading model_best.mdlus: 3%|โ | 270M/9.19G [00:04<02:38, 60.6MB/s]
Downloading model_best.mdlus: 3%|โ | 280M/9.19G [00:04<02:29, 64.0MB/s]
Downloading model_best.mdlus: 3%|โ | 290M/9.19G [00:04<02:17, 69.5MB/s]
Downloading model_best.mdlus: 3%|โ | 300M/9.19G [00:05<02:43, 58.6MB/s]
Downloading model_best.mdlus: 3%|โ | 310M/9.19G [00:05<02:24, 66.1MB/s]
Downloading model_best.mdlus: 3%|โ | 320M/9.19G [00:05<02:46, 57.2MB/s]
Downloading model_best.mdlus: 4%|โ | 330M/9.19G [00:05<02:31, 63.0MB/s]
Downloading model_best.mdlus: 4%|โ | 340M/9.19G [00:05<03:06, 51.1MB/s]
Downloading model_best.mdlus: 4%|โ | 350M/9.19G [00:06<03:02, 52.1MB/s]
Downloading model_best.mdlus: 4%|โ | 360M/9.19G [00:06<02:59, 52.8MB/s]
Downloading model_best.mdlus: 4%|โ | 370M/9.19G [00:06<02:45, 57.2MB/s]
Downloading model_best.mdlus: 4%|โ | 380M/9.19G [00:06<02:27, 64.4MB/s]
Downloading model_best.mdlus: 4%|โ | 390M/9.19G [00:06<02:47, 56.4MB/s]
Downloading model_best.mdlus: 4%|โ | 400M/9.19G [00:06<02:35, 60.7MB/s]
Downloading model_best.mdlus: 4%|โ | 410M/9.19G [00:07<02:49, 55.6MB/s]
Downloading model_best.mdlus: 4%|โ | 420M/9.19G [00:07<02:46, 56.5MB/s]
Downloading model_best.mdlus: 5%|โ | 430M/9.19G [00:07<02:47, 56.3MB/s]
Downloading model_best.mdlus: 5%|โ | 440M/9.19G [00:07<02:42, 57.8MB/s]
Downloading model_best.mdlus: 5%|โ | 450M/9.19G [00:07<03:07, 50.0MB/s]
Downloading model_best.mdlus: 5%|โ | 460M/9.19G [00:08<02:46, 56.5MB/s]
Downloading model_best.mdlus: 5%|โ | 470M/9.19G [00:08<03:01, 51.6MB/s]
Downloading model_best.mdlus: 5%|โ | 480M/9.19G [00:08<02:42, 57.8MB/s]
Downloading model_best.mdlus: 5%|โ | 490M/9.19G [00:08<02:59, 52.2MB/s]
Downloading model_best.mdlus: 5%|โ | 500M/9.19G [00:08<02:47, 55.8MB/s]
Downloading model_best.mdlus: 5%|โ | 510M/9.19G [00:09<02:38, 58.7MB/s]
Downloading model_best.mdlus: 6%|โ | 520M/9.19G [00:09<03:08, 49.5MB/s]
Downloading model_best.mdlus: 6%|โ | 530M/9.19G [00:09<02:56, 52.7MB/s]
Downloading model_best.mdlus: 6%|โ | 540M/9.19G [00:09<02:58, 52.0MB/s]
Downloading model_best.mdlus: 6%|โ | 550M/9.19G [00:09<02:57, 52.4MB/s]
Downloading model_best.mdlus: 6%|โ | 560M/9.19G [00:10<03:03, 50.6MB/s]
Downloading model_best.mdlus: 6%|โ | 570M/9.19G [00:10<03:00, 51.5MB/s]
Downloading model_best.mdlus: 6%|โ | 580M/9.19G [00:10<03:50, 40.2MB/s]
Downloading model_best.mdlus: 6%|โ | 590M/9.19G [00:10<03:20, 46.2MB/s]
Downloading model_best.mdlus: 6%|โ | 600M/9.19G [00:11<03:05, 49.9MB/s]
Downloading model_best.mdlus: 6%|โ | 610M/9.19G [00:11<02:59, 51.4MB/s]
Downloading model_best.mdlus: 7%|โ | 620M/9.19G [00:11<02:46, 55.4MB/s]
Downloading model_best.mdlus: 7%|โ | 630M/9.19G [00:11<02:40, 57.4MB/s]
Downloading model_best.mdlus: 7%|โ | 640M/9.19G [00:11<03:17, 46.5MB/s]
Downloading model_best.mdlus: 7%|โ | 650M/9.19G [00:11<02:55, 52.4MB/s]
Downloading model_best.mdlus: 7%|โ | 660M/9.19G [00:12<02:55, 52.4MB/s]
Downloading model_best.mdlus: 7%|โ | 670M/9.19G [00:12<02:37, 58.2MB/s]
Downloading model_best.mdlus: 7%|โ | 680M/9.19G [00:12<02:46, 55.1MB/s]
Downloading model_best.mdlus: 7%|โ | 690M/9.19G [00:12<02:51, 53.3MB/s]
Downloading model_best.mdlus: 7%|โ | 700M/9.19G [00:12<02:31, 60.4MB/s]
Downloading model_best.mdlus: 8%|โ | 710M/9.19G [00:13<03:03, 49.6MB/s]
Downloading model_best.mdlus: 8%|โ | 720M/9.19G [00:13<03:00, 50.6MB/s]
Downloading model_best.mdlus: 8%|โ | 730M/9.19G [00:13<02:43, 55.6MB/s]
Downloading model_best.mdlus: 8%|โ | 740M/9.19G [00:13<02:54, 52.2MB/s]
Downloading model_best.mdlus: 8%|โ | 750M/9.19G [00:13<02:50, 53.2MB/s]
Downloading model_best.mdlus: 8%|โ | 760M/9.19G [00:14<03:07, 48.5MB/s]
Downloading model_best.mdlus: 8%|โ | 770M/9.19G [00:14<03:25, 44.2MB/s]
Downloading model_best.mdlus: 8%|โ | 780M/9.19G [00:14<03:02, 49.7MB/s]
Downloading model_best.mdlus: 8%|โ | 790M/9.19G [00:14<03:40, 41.0MB/s]
Downloading model_best.mdlus: 8%|โ | 800M/9.19G [00:15<03:03, 49.2MB/s]
Downloading model_best.mdlus: 9%|โ | 810M/9.19G [00:15<02:36, 57.5MB/s]
Downloading model_best.mdlus: 9%|โ | 820M/9.19G [00:15<02:18, 65.1MB/s]
Downloading model_best.mdlus: 9%|โ | 830M/9.19G [00:15<02:09, 69.3MB/s]
Downloading model_best.mdlus: 9%|โ | 840M/9.19G [00:15<02:31, 59.2MB/s]
Downloading model_best.mdlus: 9%|โ | 850M/9.19G [00:15<02:31, 59.2MB/s]
Downloading model_best.mdlus: 9%|โ | 860M/9.19G [00:16<02:22, 63.2MB/s]
Downloading model_best.mdlus: 9%|โ | 870M/9.19G [00:16<02:17, 65.2MB/s]
Downloading model_best.mdlus: 9%|โ | 880M/9.19G [00:16<02:07, 70.2MB/s]
Downloading model_best.mdlus: 9%|โ | 890M/9.19G [00:16<02:09, 68.8MB/s]
Downloading model_best.mdlus: 10%|โ | 900M/9.19G [00:16<02:43, 54.6MB/s]
Downloading model_best.mdlus: 10%|โ | 910M/9.19G [00:16<02:21, 62.9MB/s]
Downloading model_best.mdlus: 10%|โ | 920M/9.19G [00:17<02:56, 50.4MB/s]
Downloading model_best.mdlus: 10%|โ | 930M/9.19G [00:17<02:36, 57.0MB/s]
Downloading model_best.mdlus: 10%|โ | 940M/9.19G [00:17<02:57, 50.1MB/s]
Downloading model_best.mdlus: 10%|โ | 950M/9.19G [00:17<02:48, 52.6MB/s]
Downloading model_best.mdlus: 10%|โ | 960M/9.19G [00:18<03:28, 42.5MB/s]
Downloading model_best.mdlus: 10%|โ | 970M/9.19G [00:18<03:03, 48.2MB/s]
Downloading model_best.mdlus: 10%|โ | 980M/9.19G [00:18<03:06, 47.5MB/s]
Downloading model_best.mdlus: 11%|โ | 990M/9.19G [00:18<02:44, 53.6MB/s]
Downloading model_best.mdlus: 11%|โ | 0.98G/9.19G [00:18<03:42, 39.7MB/s]
Downloading model_best.mdlus: 11%|โ | 0.99G/9.19G [00:19<03:15, 45.1MB/s]
Downloading model_best.mdlus: 11%|โ | 1.00G/9.19G [00:19<03:41, 39.7MB/s]
Downloading model_best.mdlus: 11%|โ | 1.01G/9.19G [00:19<03:36, 40.5MB/s]
Downloading model_best.mdlus: 11%|โ | 1.02G/9.19G [00:19<03:06, 47.1MB/s]
Downloading model_best.mdlus: 11%|โ | 1.03G/9.19G [00:20<03:30, 41.7MB/s]
Downloading model_best.mdlus: 11%|โโ | 1.04G/9.19G [00:20<03:36, 40.5MB/s]
Downloading model_best.mdlus: 11%|โโ | 1.04G/9.19G [00:20<03:05, 47.1MB/s]
Downloading model_best.mdlus: 11%|โโ | 1.05G/9.19G [00:20<02:46, 52.4MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.06G/9.19G [00:21<03:12, 45.4MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.07G/9.19G [00:21<02:50, 51.2MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.08G/9.19G [00:21<02:27, 59.1MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.09G/9.19G [00:21<02:11, 66.2MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.10G/9.19G [00:21<01:59, 72.7MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.11G/9.19G [00:21<02:00, 71.9MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.12G/9.19G [00:21<01:57, 73.8MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.13G/9.19G [00:22<02:28, 58.1MB/s]
Downloading model_best.mdlus: 12%|โโ | 1.14G/9.19G [00:22<02:28, 58.3MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.15G/9.19G [00:22<02:22, 60.5MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.16G/9.19G [00:22<02:21, 60.8MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.17G/9.19G [00:22<02:09, 66.5MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.18G/9.19G [00:22<02:09, 66.6MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.19G/9.19G [00:23<02:28, 58.0MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.20G/9.19G [00:23<02:11, 65.4MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.21G/9.19G [00:23<02:00, 71.1MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.22G/9.19G [00:23<01:56, 73.7MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.23G/9.19G [00:23<01:55, 73.8MB/s]
Downloading model_best.mdlus: 13%|โโ | 1.24G/9.19G [00:23<02:00, 70.9MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.25G/9.19G [00:24<02:25, 58.5MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.26G/9.19G [00:24<02:14, 63.6MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.27G/9.19G [00:24<02:02, 69.3MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.28G/9.19G [00:24<01:53, 74.9MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.29G/9.19G [00:24<01:51, 76.1MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.30G/9.19G [00:24<01:52, 75.4MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.31G/9.19G [00:24<01:57, 71.9MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.32G/9.19G [00:25<02:27, 57.2MB/s]
Downloading model_best.mdlus: 14%|โโ | 1.33G/9.19G [00:25<02:26, 57.7MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.34G/9.19G [00:25<02:34, 54.7MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.35G/9.19G [00:25<02:23, 58.9MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.36G/9.19G [00:25<02:15, 62.0MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.37G/9.19G [00:25<02:04, 67.6MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.38G/9.19G [00:26<03:20, 41.9MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.39G/9.19G [00:26<02:47, 50.0MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.40G/9.19G [00:26<02:23, 58.4MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.41G/9.19G [00:26<02:10, 64.2MB/s]
Downloading model_best.mdlus: 15%|โโ | 1.42G/9.19G [00:26<02:22, 58.7MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.43G/9.19G [00:27<02:24, 57.6MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.44G/9.19G [00:27<02:27, 56.4MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.45G/9.19G [00:27<03:10, 43.7MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.46G/9.19G [00:27<02:58, 46.7MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.46G/9.19G [00:28<02:53, 47.7MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.47G/9.19G [00:28<02:40, 51.6MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.48G/9.19G [00:28<02:27, 56.2MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.49G/9.19G [00:28<02:34, 53.4MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.50G/9.19G [00:28<03:09, 43.6MB/s]
Downloading model_best.mdlus: 16%|โโ | 1.51G/9.19G [00:29<03:02, 45.1MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.52G/9.19G [00:29<03:00, 45.7MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.53G/9.19G [00:29<02:44, 49.9MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.54G/9.19G [00:29<02:29, 55.1MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.55G/9.19G [00:29<02:22, 57.6MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.56G/9.19G [00:30<02:42, 50.3MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.57G/9.19G [00:30<02:32, 53.6MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.58G/9.19G [00:30<02:33, 53.2MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.59G/9.19G [00:30<02:23, 57.0MB/s]
Downloading model_best.mdlus: 17%|โโ | 1.60G/9.19G [00:30<02:25, 56.1MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.61G/9.19G [00:31<02:15, 60.1MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.62G/9.19G [00:31<02:09, 62.8MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.63G/9.19G [00:31<02:22, 57.0MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.64G/9.19G [00:31<02:26, 55.5MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.65G/9.19G [00:31<02:31, 53.6MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.66G/9.19G [00:31<02:23, 56.4MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.67G/9.19G [00:32<02:17, 58.9MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.68G/9.19G [00:32<02:19, 57.6MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.69G/9.19G [00:32<02:47, 48.0MB/s]
Downloading model_best.mdlus: 18%|โโ | 1.70G/9.19G [00:32<02:36, 51.5MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.71G/9.19G [00:32<02:32, 52.5MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.72G/9.19G [00:33<02:40, 50.1MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.73G/9.19G [00:33<02:36, 51.1MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.74G/9.19G [00:33<02:26, 54.7MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.75G/9.19G [00:33<02:16, 58.5MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.76G/9.19G [00:34<02:41, 49.5MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.77G/9.19G [00:34<02:37, 50.7MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.78G/9.19G [00:34<02:39, 49.8MB/s]
Downloading model_best.mdlus: 19%|โโ | 1.79G/9.19G [00:34<02:35, 51.1MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.80G/9.19G [00:34<02:33, 51.7MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.81G/9.19G [00:35<02:36, 50.8MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.82G/9.19G [00:35<02:55, 45.1MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.83G/9.19G [00:35<02:37, 50.2MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.84G/9.19G [00:35<02:28, 53.0MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.85G/9.19G [00:35<02:19, 56.4MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.86G/9.19G [00:35<02:12, 59.4MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.87G/9.19G [00:36<02:16, 57.8MB/s]
Downloading model_best.mdlus: 20%|โโ | 1.88G/9.19G [00:36<02:33, 51.1MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.88G/9.19G [00:36<02:20, 55.9MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.89G/9.19G [00:36<02:31, 51.8MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.90G/9.19G [00:36<02:28, 52.7MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.91G/9.19G [00:37<02:23, 54.6MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.92G/9.19G [00:37<02:19, 56.1MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.93G/9.19G [00:37<02:24, 53.8MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.94G/9.19G [00:37<02:26, 53.2MB/s]
Downloading model_best.mdlus: 21%|โโ | 1.95G/9.19G [00:37<02:16, 57.0MB/s]
Downloading model_best.mdlus: 21%|โโโ | 1.96G/9.19G [00:38<02:23, 54.2MB/s]
Downloading model_best.mdlus: 21%|โโโ | 1.97G/9.19G [00:38<02:17, 56.3MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.98G/9.19G [00:38<02:10, 59.2MB/s]
Downloading model_best.mdlus: 22%|โโโ | 1.99G/9.19G [00:38<02:09, 59.9MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.00G/9.19G [00:38<02:34, 50.0MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.01G/9.19G [00:39<02:20, 54.7MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.02G/9.19G [00:39<02:17, 56.0MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.03G/9.19G [00:39<02:15, 56.8MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.04G/9.19G [00:39<02:02, 62.8MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.05G/9.19G [00:39<01:52, 68.3MB/s]
Downloading model_best.mdlus: 22%|โโโ | 2.06G/9.19G [00:39<01:58, 64.5MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.07G/9.19G [00:40<02:24, 53.1MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.08G/9.19G [00:40<02:09, 58.8MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.09G/9.19G [00:40<02:03, 61.9MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.10G/9.19G [00:40<01:54, 66.3MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.11G/9.19G [00:40<02:01, 62.8MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.12G/9.19G [00:40<01:58, 64.0MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.13G/9.19G [00:41<03:20, 37.8MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.14G/9.19G [00:41<02:52, 43.9MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.15G/9.19G [00:41<03:04, 41.0MB/s]
Downloading model_best.mdlus: 23%|โโโ | 2.16G/9.19G [00:42<02:48, 44.7MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.17G/9.19G [00:42<02:37, 48.0MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.18G/9.19G [00:42<02:26, 51.3MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.19G/9.19G [00:42<02:43, 46.0MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.20G/9.19G [00:42<02:25, 51.4MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.21G/9.19G [00:43<02:19, 53.9MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.22G/9.19G [00:43<02:15, 55.2MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.23G/9.19G [00:43<02:03, 60.5MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.24G/9.19G [00:43<01:50, 67.8MB/s]
Downloading model_best.mdlus: 24%|โโโ | 2.25G/9.19G [00:43<01:59, 62.2MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.26G/9.19G [00:43<02:23, 51.9MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.27G/9.19G [00:44<02:23, 51.9MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.28G/9.19G [00:44<02:24, 51.3MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.29G/9.19G [00:44<02:09, 57.2MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.29G/9.19G [00:44<02:11, 56.4MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.30G/9.19G [00:44<02:08, 57.5MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.31G/9.19G [00:45<02:34, 47.7MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.32G/9.19G [00:45<02:32, 48.5MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.33G/9.19G [00:45<02:18, 53.3MB/s]
Downloading model_best.mdlus: 25%|โโโ | 2.34G/9.19G [00:45<02:01, 60.6MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.35G/9.19G [00:45<01:57, 62.4MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.36G/9.19G [00:45<01:59, 61.3MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.37G/9.19G [00:46<02:01, 60.4MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.38G/9.19G [00:46<02:47, 43.6MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.39G/9.19G [00:46<02:33, 47.7MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.40G/9.19G [00:46<02:27, 49.5MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.41G/9.19G [00:47<02:31, 48.0MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.42G/9.19G [00:47<02:29, 48.8MB/s]
Downloading model_best.mdlus: 26%|โโโ | 2.43G/9.19G [00:47<02:23, 50.7MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.44G/9.19G [00:47<02:37, 45.9MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.45G/9.19G [00:47<02:32, 47.3MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.46G/9.19G [00:48<02:29, 48.4MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.47G/9.19G [00:48<02:25, 49.5MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.48G/9.19G [00:48<02:16, 52.9MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.49G/9.19G [00:48<02:08, 56.2MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.50G/9.19G [00:49<02:29, 48.1MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.51G/9.19G [00:49<02:29, 48.1MB/s]
Downloading model_best.mdlus: 27%|โโโ | 2.52G/9.19G [00:49<02:19, 51.2MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.53G/9.19G [00:49<02:12, 54.1MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.54G/9.19G [00:49<02:02, 58.2MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.55G/9.19G [00:49<01:56, 61.0MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.56G/9.19G [00:50<01:58, 60.1MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.57G/9.19G [00:50<02:12, 53.5MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.58G/9.19G [00:50<02:07, 55.6MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.59G/9.19G [00:50<02:08, 55.4MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.60G/9.19G [00:50<02:03, 57.2MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.61G/9.19G [00:51<02:02, 57.5MB/s]
Downloading model_best.mdlus: 28%|โโโ | 2.62G/9.19G [00:51<02:37, 44.8MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.63G/9.19G [00:51<03:01, 38.9MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.64G/9.19G [00:51<02:37, 44.6MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.65G/9.19G [00:52<02:25, 48.3MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.66G/9.19G [00:52<02:28, 47.3MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.67G/9.19G [00:52<02:23, 48.8MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.68G/9.19G [00:52<02:18, 50.7MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.69G/9.19G [00:52<02:08, 54.2MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.70G/9.19G [00:53<02:22, 49.1MB/s]
Downloading model_best.mdlus: 29%|โโโ | 2.71G/9.19G [00:53<02:47, 41.6MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.71G/9.19G [00:53<02:19, 49.9MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.72G/9.19G [00:53<02:00, 57.8MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.73G/9.19G [00:53<01:49, 63.1MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.74G/9.19G [00:54<02:09, 53.6MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.75G/9.19G [00:54<02:35, 44.5MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.76G/9.19G [00:54<02:39, 43.3MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.77G/9.19G [00:54<02:41, 42.6MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.78G/9.19G [00:55<02:42, 42.5MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.79G/9.19G [00:55<02:42, 42.3MB/s]
Downloading model_best.mdlus: 30%|โโโ | 2.80G/9.19G [00:55<02:30, 45.5MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.81G/9.19G [00:55<02:56, 38.8MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.82G/9.19G [00:56<02:41, 42.5MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.83G/9.19G [00:56<02:38, 43.1MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.84G/9.19G [00:56<02:23, 47.6MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.85G/9.19G [00:56<02:11, 51.8MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.86G/9.19G [00:56<02:06, 53.8MB/s]
Downloading model_best.mdlus: 31%|โโโ | 2.87G/9.19G [00:57<02:10, 52.0MB/s]
Downloading model_best.mdlus: 31%|โโโโ | 2.88G/9.19G [00:57<02:38, 42.8MB/s]
Downloading model_best.mdlus: 31%|โโโโ | 2.89G/9.19G [00:57<02:32, 44.3MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.90G/9.19G [00:57<02:32, 44.2MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.91G/9.19G [00:58<02:26, 46.1MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.92G/9.19G [00:58<02:25, 46.2MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.93G/9.19G [00:58<02:16, 49.2MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.94G/9.19G [00:58<02:37, 42.7MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.95G/9.19G [00:59<02:27, 45.5MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.96G/9.19G [00:59<02:19, 47.8MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.97G/9.19G [00:59<02:16, 48.9MB/s]
Downloading model_best.mdlus: 32%|โโโโ | 2.98G/9.19G [00:59<02:17, 48.4MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 2.99G/9.19G [00:59<02:20, 47.5MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.00G/9.19G [01:00<02:19, 47.7MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.01G/9.19G [01:00<02:49, 39.1MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.02G/9.19G [01:00<02:33, 43.2MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.03G/9.19G [01:00<02:20, 47.3MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.04G/9.19G [01:01<02:23, 46.0MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.05G/9.19G [01:01<02:18, 47.8MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.06G/9.19G [01:01<02:10, 50.5MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.07G/9.19G [01:01<02:28, 44.4MB/s]
Downloading model_best.mdlus: 33%|โโโโ | 3.08G/9.19G [01:01<02:14, 49.0MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.09G/9.19G [01:02<02:25, 45.2MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.10G/9.19G [01:02<02:15, 48.3MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.11G/9.19G [01:02<02:11, 49.9MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.12G/9.19G [01:02<02:12, 49.3MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.12G/9.19G [01:03<02:33, 42.3MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.13G/9.19G [01:03<02:21, 45.9MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.14G/9.19G [01:03<02:09, 50.0MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.15G/9.19G [01:03<01:58, 54.5MB/s]
Downloading model_best.mdlus: 34%|โโโโ | 3.16G/9.19G [01:03<01:59, 54.4MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.17G/9.19G [01:04<01:58, 54.5MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.18G/9.19G [01:04<02:02, 52.7MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.19G/9.19G [01:04<02:23, 45.0MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.20G/9.19G [01:04<02:20, 45.8MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.21G/9.19G [01:04<02:04, 51.6MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.22G/9.19G [01:05<02:05, 51.1MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.23G/9.19G [01:05<01:59, 53.6MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.24G/9.19G [01:05<01:54, 56.0MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.25G/9.19G [01:05<02:12, 48.1MB/s]
Downloading model_best.mdlus: 35%|โโโโ | 3.26G/9.19G [01:05<01:57, 54.4MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.27G/9.19G [01:06<01:46, 59.5MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.28G/9.19G [01:06<01:40, 62.9MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.29G/9.19G [01:06<01:42, 61.8MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.30G/9.19G [01:06<01:41, 62.6MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.31G/9.19G [01:06<01:57, 53.7MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.32G/9.19G [01:06<02:03, 51.1MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.33G/9.19G [01:07<02:05, 50.1MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.34G/9.19G [01:07<02:10, 48.2MB/s]
Downloading model_best.mdlus: 36%|โโโโ | 3.35G/9.19G [01:07<02:18, 45.3MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.36G/9.19G [01:07<02:14, 46.5MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.37G/9.19G [01:08<02:21, 44.0MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.38G/9.19G [01:08<02:42, 38.4MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.39G/9.19G [01:08<02:41, 38.5MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.40G/9.19G [01:09<02:27, 42.2MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.41G/9.19G [01:09<02:27, 42.1MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.42G/9.19G [01:09<02:17, 45.2MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.43G/9.19G [01:09<02:04, 49.6MB/s]
Downloading model_best.mdlus: 37%|โโโโ | 3.44G/9.19G [01:09<02:20, 44.0MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.45G/9.19G [01:10<02:10, 47.1MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.46G/9.19G [01:10<02:02, 50.2MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.47G/9.19G [01:10<01:57, 52.2MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.48G/9.19G [01:10<01:51, 55.3MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.49G/9.19G [01:10<01:46, 57.3MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.50G/9.19G [01:10<01:41, 60.0MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.51G/9.19G [01:11<02:00, 50.8MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.52G/9.19G [01:11<02:05, 48.5MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.53G/9.19G [01:11<02:11, 46.2MB/s]
Downloading model_best.mdlus: 38%|โโโโ | 3.54G/9.19G [01:11<01:53, 53.3MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.54G/9.19G [01:11<01:46, 57.0MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.55G/9.19G [01:12<01:40, 60.4MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.56G/9.19G [01:12<01:55, 52.4MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.57G/9.19G [01:12<01:59, 50.5MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.58G/9.19G [01:12<02:03, 48.7MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.59G/9.19G [01:13<02:00, 49.9MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.60G/9.19G [01:13<02:00, 49.7MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.61G/9.19G [01:13<01:54, 52.2MB/s]
Downloading model_best.mdlus: 39%|โโโโ | 3.62G/9.19G [01:13<02:05, 47.5MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.63G/9.19G [01:13<02:00, 49.6MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.64G/9.19G [01:14<01:53, 52.5MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.65G/9.19G [01:14<01:48, 54.8MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.66G/9.19G [01:14<01:48, 54.6MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.67G/9.19G [01:14<01:39, 59.5MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.68G/9.19G [01:14<01:38, 60.3MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.69G/9.19G [01:15<01:51, 52.9MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.70G/9.19G [01:15<01:45, 56.0MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.71G/9.19G [01:15<01:42, 57.2MB/s]
Downloading model_best.mdlus: 40%|โโโโ | 3.72G/9.19G [01:15<01:43, 56.9MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.73G/9.19G [01:15<01:43, 56.9MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.74G/9.19G [01:15<01:42, 56.9MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.75G/9.19G [01:16<01:59, 48.7MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.76G/9.19G [01:16<01:58, 49.1MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.77G/9.19G [01:16<01:59, 48.9MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.78G/9.19G [01:16<02:06, 46.0MB/s]
Downloading model_best.mdlus: 41%|โโโโ | 3.79G/9.19G [01:17<02:08, 45.1MB/s]
Downloading model_best.mdlus: 41%|โโโโโ | 3.80G/9.19G [01:17<02:02, 47.1MB/s]
Downloading model_best.mdlus: 41%|โโโโโ | 3.81G/9.19G [01:17<02:04, 46.4MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.82G/9.19G [01:17<02:17, 42.1MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.83G/9.19G [01:18<02:16, 42.1MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.84G/9.19G [01:18<02:25, 39.4MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.85G/9.19G [01:18<02:09, 44.3MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.86G/9.19G [01:18<01:56, 49.4MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.87G/9.19G [01:18<01:51, 51.3MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.88G/9.19G [01:19<02:02, 46.5MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.89G/9.19G [01:19<01:54, 49.5MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.90G/9.19G [01:19<01:54, 49.6MB/s]
Downloading model_best.mdlus: 42%|โโโโโ | 3.91G/9.19G [01:19<01:55, 49.3MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.92G/9.19G [01:19<01:47, 52.8MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.93G/9.19G [01:20<01:42, 55.2MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.94G/9.19G [01:20<02:01, 46.6MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.95G/9.19G [01:20<02:07, 44.3MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.96G/9.19G [01:20<01:56, 48.4MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.96G/9.19G [01:21<01:50, 50.7MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.97G/9.19G [01:21<01:49, 51.2MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.98G/9.19G [01:21<01:43, 54.3MB/s]
Downloading model_best.mdlus: 43%|โโโโโ | 3.99G/9.19G [01:21<01:40, 55.3MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.00G/9.19G [01:21<02:06, 44.0MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.01G/9.19G [01:22<02:01, 45.9MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.02G/9.19G [01:22<02:20, 39.5MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.03G/9.19G [01:22<02:34, 35.9MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.04G/9.19G [01:23<02:48, 32.7MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.05G/9.19G [01:23<02:14, 41.0MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.06G/9.19G [01:23<02:13, 41.3MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.07G/9.19G [01:23<02:13, 41.3MB/s]
Downloading model_best.mdlus: 44%|โโโโโ | 4.08G/9.19G [01:24<02:03, 44.3MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.09G/9.19G [01:24<01:51, 49.0MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.10G/9.19G [01:24<01:46, 51.3MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.11G/9.19G [01:24<01:40, 54.2MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.12G/9.19G [01:24<01:35, 56.8MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.13G/9.19G [01:25<01:52, 48.1MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.14G/9.19G [01:25<01:51, 48.5MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.15G/9.19G [01:25<01:50, 49.0MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.16G/9.19G [01:25<01:46, 50.7MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.17G/9.19G [01:25<01:40, 53.5MB/s]
Downloading model_best.mdlus: 45%|โโโโโ | 4.18G/9.19G [01:25<01:35, 56.2MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.19G/9.19G [01:26<01:52, 47.9MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.20G/9.19G [01:26<01:43, 51.9MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.21G/9.19G [01:26<01:36, 55.5MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.22G/9.19G [01:26<01:32, 57.7MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.23G/9.19G [01:26<01:38, 54.2MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.24G/9.19G [01:27<01:36, 55.0MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.25G/9.19G [01:27<01:51, 47.6MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.26G/9.19G [01:27<01:42, 51.5MB/s]
Downloading model_best.mdlus: 46%|โโโโโ | 4.27G/9.19G [01:27<01:32, 57.0MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.28G/9.19G [01:27<01:23, 63.0MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.29G/9.19G [01:28<01:25, 61.6MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.30G/9.19G [01:28<01:29, 58.9MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.31G/9.19G [01:28<01:27, 60.2MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.32G/9.19G [01:28<01:43, 50.4MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.33G/9.19G [01:28<01:39, 52.3MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.34G/9.19G [01:29<01:37, 53.3MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.35G/9.19G [01:29<01:33, 55.5MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.36G/9.19G [01:29<01:27, 59.1MB/s]
Downloading model_best.mdlus: 47%|โโโโโ | 4.37G/9.19G [01:29<01:28, 58.6MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.38G/9.19G [01:29<01:43, 50.0MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.38G/9.19G [01:30<01:35, 54.0MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.39G/9.19G [01:30<01:29, 57.8MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.40G/9.19G [01:30<01:23, 61.6MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.41G/9.19G [01:30<01:27, 58.5MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.42G/9.19G [01:30<01:23, 61.6MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.43G/9.19G [01:30<01:28, 57.6MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.44G/9.19G [01:31<01:41, 50.3MB/s]
Downloading model_best.mdlus: 48%|โโโโโ | 4.45G/9.19G [01:31<01:35, 53.1MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.46G/9.19G [01:31<01:30, 56.3MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.47G/9.19G [01:31<01:24, 60.0MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.48G/9.19G [01:31<01:25, 59.1MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.49G/9.19G [01:31<01:24, 60.0MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.50G/9.19G [01:32<01:45, 47.9MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.51G/9.19G [01:32<01:37, 51.5MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.52G/9.19G [01:32<01:36, 51.9MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.53G/9.19G [01:32<01:37, 51.2MB/s]
Downloading model_best.mdlus: 49%|โโโโโ | 4.54G/9.19G [01:33<01:32, 54.1MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.55G/9.19G [01:33<01:29, 55.4MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.56G/9.19G [01:33<01:56, 42.5MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.57G/9.19G [01:33<01:49, 45.1MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.58G/9.19G [01:34<01:45, 46.9MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.59G/9.19G [01:34<01:38, 50.2MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.60G/9.19G [01:34<01:34, 52.4MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.61G/9.19G [01:34<01:27, 56.3MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.62G/9.19G [01:34<01:22, 59.2MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.63G/9.19G [01:34<01:40, 48.7MB/s]
Downloading model_best.mdlus: 50%|โโโโโ | 4.64G/9.19G [01:35<01:37, 50.3MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.65G/9.19G [01:35<01:28, 55.1MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.66G/9.19G [01:35<01:45, 46.1MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.67G/9.19G [01:35<01:35, 50.8MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.68G/9.19G [01:35<01:27, 55.5MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.69G/9.19G [01:36<01:55, 42.0MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.70G/9.19G [01:36<01:36, 49.9MB/s]
Downloading model_best.mdlus: 51%|โโโโโ | 4.71G/9.19G [01:36<01:23, 57.8MB/s]
Downloading model_best.mdlus: 51%|โโโโโโ | 4.72G/9.19G [01:36<01:17, 62.0MB/s]
Downloading model_best.mdlus: 51%|โโโโโโ | 4.73G/9.19G [01:36<01:17, 62.0MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.74G/9.19G [01:37<01:17, 61.6MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.75G/9.19G [01:37<01:18, 60.6MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.76G/9.19G [01:37<01:38, 48.3MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.77G/9.19G [01:37<01:30, 52.3MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.78G/9.19G [01:37<01:22, 57.2MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.79G/9.19G [01:38<01:29, 53.1MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.79G/9.19G [01:38<01:25, 55.4MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.80G/9.19G [01:38<01:27, 53.8MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.81G/9.19G [01:38<01:48, 43.3MB/s]
Downloading model_best.mdlus: 52%|โโโโโโ | 4.82G/9.19G [01:39<01:41, 46.3MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.83G/9.19G [01:39<01:39, 47.2MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.84G/9.19G [01:39<01:37, 47.9MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.85G/9.19G [01:39<01:29, 51.9MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.86G/9.19G [01:39<01:35, 48.8MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.87G/9.19G [01:40<01:42, 45.2MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.88G/9.19G [01:40<01:36, 47.8MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.89G/9.19G [01:40<01:35, 48.4MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.90G/9.19G [01:40<01:31, 50.4MB/s]
Downloading model_best.mdlus: 53%|โโโโโโ | 4.91G/9.19G [01:40<01:32, 49.5MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.92G/9.19G [01:41<01:30, 50.7MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.93G/9.19G [01:41<01:27, 52.4MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.94G/9.19G [01:41<01:41, 44.9MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.95G/9.19G [01:41<01:34, 48.1MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.96G/9.19G [01:41<01:29, 50.6MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.97G/9.19G [01:42<01:20, 56.2MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.98G/9.19G [01:42<01:19, 56.6MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 4.99G/9.19G [01:42<01:19, 56.8MB/s]
Downloading model_best.mdlus: 54%|โโโโโโ | 5.00G/9.19G [01:42<01:40, 44.6MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.01G/9.19G [01:43<01:33, 48.2MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.02G/9.19G [01:43<01:27, 50.9MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.03G/9.19G [01:43<01:20, 55.7MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.04G/9.19G [01:43<01:29, 50.0MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.05G/9.19G [01:43<01:31, 48.4MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.06G/9.19G [01:44<01:30, 49.2MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.07G/9.19G [01:44<01:43, 42.7MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.08G/9.19G [01:44<01:34, 46.7MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.09G/9.19G [01:44<01:31, 48.0MB/s]
Downloading model_best.mdlus: 55%|โโโโโโ | 5.10G/9.19G [01:44<01:25, 51.2MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.11G/9.19G [01:45<01:14, 59.1MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.12G/9.19G [01:45<01:15, 58.0MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.13G/9.19G [01:45<01:30, 48.4MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.14G/9.19G [01:45<01:24, 51.3MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.15G/9.19G [01:45<01:21, 53.3MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.16G/9.19G [01:46<01:16, 56.8MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.17G/9.19G [01:46<01:25, 50.6MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.18G/9.19G [01:46<01:15, 57.2MB/s]
Downloading model_best.mdlus: 56%|โโโโโโ | 5.19G/9.19G [01:46<01:29, 48.0MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.20G/9.19G [01:46<01:23, 51.6MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.21G/9.19G [01:47<01:18, 54.7MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.21G/9.19G [01:47<01:10, 60.5MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.22G/9.19G [01:47<01:06, 64.4MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.23G/9.19G [01:47<01:06, 64.0MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.24G/9.19G [01:47<01:14, 56.6MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.25G/9.19G [01:47<01:20, 52.6MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.26G/9.19G [01:48<01:14, 57.0MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.27G/9.19G [01:48<01:13, 57.4MB/s]
Downloading model_best.mdlus: 57%|โโโโโโ | 5.28G/9.19G [01:48<01:06, 63.5MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.29G/9.19G [01:48<01:01, 68.3MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.30G/9.19G [01:48<00:56, 74.2MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.31G/9.19G [01:48<00:58, 71.0MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.32G/9.19G [01:48<00:54, 76.2MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.33G/9.19G [01:49<00:51, 80.9MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.34G/9.19G [01:49<00:48, 84.4MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.35G/9.19G [01:49<00:47, 86.7MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.36G/9.19G [01:49<00:46, 88.7MB/s]
Downloading model_best.mdlus: 58%|โโโโโโ | 5.37G/9.19G [01:49<00:45, 89.7MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.38G/9.19G [01:49<00:45, 90.4MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.39G/9.19G [01:49<00:46, 88.0MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.40G/9.19G [01:49<00:45, 89.4MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.41G/9.19G [01:49<00:48, 84.4MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.42G/9.19G [01:50<00:46, 86.2MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.43G/9.19G [01:50<00:45, 88.8MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.44G/9.19G [01:50<00:52, 76.9MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.45G/9.19G [01:50<00:49, 81.6MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.46G/9.19G [01:50<01:01, 65.1MB/s]
Downloading model_best.mdlus: 59%|โโโโโโ | 5.47G/9.19G [01:50<00:55, 71.4MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.48G/9.19G [01:50<00:53, 74.9MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.49G/9.19G [01:51<01:05, 60.3MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.50G/9.19G [01:51<01:06, 59.5MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.51G/9.19G [01:51<00:59, 66.8MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.52G/9.19G [01:51<01:00, 65.5MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.53G/9.19G [01:51<00:54, 71.9MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.54G/9.19G [01:52<01:05, 60.1MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.55G/9.19G [01:52<00:58, 67.0MB/s]
Downloading model_best.mdlus: 60%|โโโโโโ | 5.56G/9.19G [01:52<00:53, 73.5MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.57G/9.19G [01:52<00:55, 70.5MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.58G/9.19G [01:52<00:51, 75.7MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.59G/9.19G [01:52<00:49, 78.2MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.60G/9.19G [01:52<00:46, 82.3MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.61G/9.19G [01:52<00:45, 85.5MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.62G/9.19G [01:52<00:43, 88.2MB/s]
Downloading model_best.mdlus: 61%|โโโโโโ | 5.62G/9.19G [01:53<00:42, 89.9MB/s]
Downloading model_best.mdlus: 61%|โโโโโโโ | 5.63G/9.19G [01:53<00:42, 90.9MB/s]
Downloading model_best.mdlus: 61%|โโโโโโโ | 5.64G/9.19G [01:53<00:41, 91.7MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.65G/9.19G [01:53<00:41, 92.2MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.66G/9.19G [01:53<00:40, 92.7MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.67G/9.19G [01:53<00:40, 92.4MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.68G/9.19G [01:53<00:41, 90.5MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.69G/9.19G [01:53<00:41, 91.3MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.70G/9.19G [01:53<00:40, 92.5MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.71G/9.19G [01:54<00:40, 92.9MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.72G/9.19G [01:54<00:42, 88.1MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.73G/9.19G [01:54<00:41, 89.9MB/s]
Downloading model_best.mdlus: 62%|โโโโโโโ | 5.74G/9.19G [01:54<00:40, 91.0MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.75G/9.19G [01:54<00:40, 92.2MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.76G/9.19G [01:54<00:39, 92.6MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.77G/9.19G [01:54<00:39, 92.8MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.78G/9.19G [01:55<01:02, 58.2MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.79G/9.19G [01:55<00:55, 65.6MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.80G/9.19G [01:55<00:50, 72.2MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.81G/9.19G [01:55<00:46, 77.4MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.82G/9.19G [01:55<00:44, 82.1MB/s]
Downloading model_best.mdlus: 63%|โโโโโโโ | 5.83G/9.19G [01:55<00:42, 85.6MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.84G/9.19G [01:55<00:40, 88.0MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.85G/9.19G [01:55<00:39, 90.1MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.86G/9.19G [01:56<00:39, 91.1MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.87G/9.19G [01:56<00:38, 92.0MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.88G/9.19G [01:56<00:38, 92.6MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.89G/9.19G [01:56<00:38, 93.2MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.90G/9.19G [01:56<00:37, 93.6MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.91G/9.19G [01:56<00:37, 93.8MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.92G/9.19G [01:56<00:37, 93.9MB/s]
Downloading model_best.mdlus: 64%|โโโโโโโ | 5.93G/9.19G [01:56<00:37, 94.0MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 5.94G/9.19G [01:56<00:37, 94.1MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 5.95G/9.19G [01:57<00:37, 94.2MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 5.96G/9.19G [01:57<00:36, 94.1MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 5.97G/9.19G [01:57<00:36, 94.4MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 5.98G/9.19G [01:57<00:36, 94.6MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 5.99G/9.19G [01:57<00:36, 94.5MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 6.00G/9.19G [01:57<00:36, 94.3MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 6.01G/9.19G [01:57<00:36, 94.5MB/s]
Downloading model_best.mdlus: 65%|โโโโโโโ | 6.02G/9.19G [01:57<00:36, 94.2MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.03G/9.19G [01:57<00:36, 94.4MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.04G/9.19G [01:58<00:35, 94.7MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.04G/9.19G [01:58<00:35, 94.4MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.05G/9.19G [01:58<00:35, 94.2MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.06G/9.19G [01:58<00:35, 94.2MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.07G/9.19G [01:58<00:35, 93.7MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.08G/9.19G [01:58<00:35, 93.5MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.09G/9.19G [01:58<00:35, 93.7MB/s]
Downloading model_best.mdlus: 66%|โโโโโโโ | 6.10G/9.19G [01:58<00:35, 93.8MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.11G/9.19G [01:58<00:35, 93.7MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.12G/9.19G [01:59<00:35, 93.5MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.13G/9.19G [01:59<00:35, 93.5MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.14G/9.19G [01:59<00:34, 93.8MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.15G/9.19G [01:59<00:34, 93.7MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.16G/9.19G [01:59<00:34, 93.8MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.17G/9.19G [01:59<00:34, 93.9MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.18G/9.19G [01:59<00:34, 94.0MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.19G/9.19G [01:59<00:34, 94.0MB/s]
Downloading model_best.mdlus: 67%|โโโโโโโ | 6.20G/9.19G [01:59<00:34, 94.0MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.21G/9.19G [02:00<00:34, 94.0MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.22G/9.19G [02:00<00:33, 94.2MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.23G/9.19G [02:00<00:33, 94.2MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.24G/9.19G [02:00<00:33, 94.5MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.25G/9.19G [02:00<00:33, 94.1MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.26G/9.19G [02:00<00:33, 93.7MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.27G/9.19G [02:00<00:33, 94.1MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.28G/9.19G [02:00<00:33, 94.2MB/s]
Downloading model_best.mdlus: 68%|โโโโโโโ | 6.29G/9.19G [02:00<00:32, 94.5MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.30G/9.19G [02:01<00:32, 94.2MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.31G/9.19G [02:01<00:32, 93.9MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.32G/9.19G [02:01<00:32, 94.2MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.33G/9.19G [02:01<00:32, 94.5MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.34G/9.19G [02:01<00:32, 94.5MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.35G/9.19G [02:01<00:32, 94.2MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.36G/9.19G [02:01<00:32, 94.0MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.37G/9.19G [02:01<00:32, 94.3MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.38G/9.19G [02:01<00:32, 93.6MB/s]
Downloading model_best.mdlus: 69%|โโโโโโโ | 6.39G/9.19G [02:02<00:32, 93.9MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.40G/9.19G [02:02<00:32, 93.7MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.41G/9.19G [02:02<00:32, 93.4MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.42G/9.19G [02:02<00:31, 93.5MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.43G/9.19G [02:02<00:31, 93.4MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.44G/9.19G [02:02<00:31, 93.4MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.45G/9.19G [02:02<00:31, 93.4MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.46G/9.19G [02:02<00:31, 93.2MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.46G/9.19G [02:02<00:31, 93.0MB/s]
Downloading model_best.mdlus: 70%|โโโโโโโ | 6.47G/9.19G [02:03<00:31, 92.8MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.48G/9.19G [02:03<00:31, 93.1MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.49G/9.19G [02:03<00:30, 93.6MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.50G/9.19G [02:03<00:30, 94.2MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.51G/9.19G [02:03<00:31, 92.2MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.52G/9.19G [02:03<00:32, 89.2MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.53G/9.19G [02:03<00:31, 90.5MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโ | 6.54G/9.19G [02:03<00:31, 91.6MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโโ | 6.55G/9.19G [02:03<00:30, 92.0MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโโ | 6.56G/9.19G [02:04<00:30, 92.6MB/s]
Downloading model_best.mdlus: 71%|โโโโโโโโ | 6.57G/9.19G [02:04<00:30, 93.2MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.58G/9.19G [02:04<00:30, 93.4MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.59G/9.19G [02:04<00:29, 93.7MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.60G/9.19G [02:04<00:29, 94.1MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.61G/9.19G [02:04<00:29, 94.5MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.62G/9.19G [02:04<00:29, 94.7MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.63G/9.19G [02:04<00:28, 94.9MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.64G/9.19G [02:04<00:28, 95.1MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.65G/9.19G [02:05<00:28, 94.8MB/s]
Downloading model_best.mdlus: 72%|โโโโโโโโ | 6.66G/9.19G [02:05<00:28, 95.3MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.67G/9.19G [02:05<00:28, 95.5MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.68G/9.19G [02:05<00:28, 95.2MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.69G/9.19G [02:05<00:28, 94.9MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.70G/9.19G [02:05<00:28, 94.5MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.71G/9.19G [02:05<00:28, 93.5MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.72G/9.19G [02:05<00:28, 93.4MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.73G/9.19G [02:05<00:28, 93.6MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.74G/9.19G [02:06<00:28, 93.6MB/s]
Downloading model_best.mdlus: 73%|โโโโโโโโ | 6.75G/9.19G [02:06<00:28, 93.7MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.76G/9.19G [02:06<00:27, 93.6MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.77G/9.19G [02:06<00:27, 93.9MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.78G/9.19G [02:06<00:27, 93.9MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.79G/9.19G [02:06<00:27, 93.7MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.80G/9.19G [02:06<00:27, 93.4MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.81G/9.19G [02:06<00:27, 93.5MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.82G/9.19G [02:06<00:27, 93.5MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.83G/9.19G [02:07<00:27, 93.2MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.84G/9.19G [02:07<00:27, 93.4MB/s]
Downloading model_best.mdlus: 74%|โโโโโโโโ | 6.85G/9.19G [02:07<00:26, 93.4MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.86G/9.19G [02:07<00:26, 93.5MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.87G/9.19G [02:07<00:26, 93.8MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.88G/9.19G [02:07<00:26, 93.8MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.88G/9.19G [02:07<00:26, 93.7MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.89G/9.19G [02:07<00:26, 93.8MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.90G/9.19G [02:07<00:26, 94.1MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.91G/9.19G [02:08<00:26, 92.7MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.92G/9.19G [02:08<00:26, 91.4MB/s]
Downloading model_best.mdlus: 75%|โโโโโโโโ | 6.93G/9.19G [02:08<00:26, 91.0MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 6.94G/9.19G [02:08<00:27, 89.2MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 6.95G/9.19G [02:08<00:26, 89.1MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 6.96G/9.19G [02:08<00:27, 88.1MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 6.97G/9.19G [02:08<00:26, 88.6MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 6.98G/9.19G [02:08<00:26, 89.7MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 6.99G/9.19G [02:09<00:25, 91.1MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 7.00G/9.19G [02:09<00:25, 91.9MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 7.01G/9.19G [02:09<00:25, 92.3MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 7.02G/9.19G [02:09<00:25, 92.4MB/s]
Downloading model_best.mdlus: 76%|โโโโโโโโ | 7.03G/9.19G [02:09<00:24, 92.9MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.04G/9.19G [02:09<00:24, 93.5MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.05G/9.19G [02:09<00:24, 93.7MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.06G/9.19G [02:09<00:24, 93.7MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.07G/9.19G [02:09<00:24, 93.8MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.08G/9.19G [02:10<00:24, 93.9MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.09G/9.19G [02:10<00:24, 93.8MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.10G/9.19G [02:10<00:23, 93.8MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.11G/9.19G [02:10<00:23, 93.9MB/s]
Downloading model_best.mdlus: 77%|โโโโโโโโ | 7.12G/9.19G [02:10<00:23, 93.8MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.13G/9.19G [02:10<00:23, 93.9MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.14G/9.19G [02:10<00:23, 93.6MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.15G/9.19G [02:10<00:23, 93.1MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.16G/9.19G [02:10<00:23, 93.7MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.17G/9.19G [02:11<00:23, 93.4MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.18G/9.19G [02:11<00:23, 93.5MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.19G/9.19G [02:11<00:22, 93.8MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.20G/9.19G [02:11<00:22, 93.6MB/s]
Downloading model_best.mdlus: 78%|โโโโโโโโ | 7.21G/9.19G [02:11<00:22, 93.1MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.22G/9.19G [02:11<00:22, 93.2MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.23G/9.19G [02:11<00:28, 73.8MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.24G/9.19G [02:11<00:28, 74.1MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.25G/9.19G [02:12<00:33, 62.7MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.26G/9.19G [02:12<00:30, 68.1MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.27G/9.19G [02:12<00:27, 74.1MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.28G/9.19G [02:12<00:25, 79.4MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.29G/9.19G [02:12<00:24, 83.2MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.29G/9.19G [02:12<00:23, 85.9MB/s]
Downloading model_best.mdlus: 79%|โโโโโโโโ | 7.30G/9.19G [02:12<00:23, 88.1MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.31G/9.19G [02:12<00:22, 89.4MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.32G/9.19G [02:13<00:22, 90.7MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.33G/9.19G [02:13<00:21, 91.6MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.34G/9.19G [02:13<00:21, 92.3MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.35G/9.19G [02:13<00:21, 93.1MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.36G/9.19G [02:13<00:21, 93.2MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.37G/9.19G [02:13<00:20, 93.8MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.38G/9.19G [02:13<00:20, 93.6MB/s]
Downloading model_best.mdlus: 80%|โโโโโโโโ | 7.39G/9.19G [02:13<00:26, 73.3MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.40G/9.19G [02:14<00:24, 78.7MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.41G/9.19G [02:14<00:23, 82.9MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.42G/9.19G [02:14<00:22, 85.8MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.43G/9.19G [02:14<00:21, 88.3MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.44G/9.19G [02:14<00:20, 90.2MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.45G/9.19G [02:14<00:20, 91.2MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโ | 7.46G/9.19G [02:14<00:20, 89.7MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโโ | 7.47G/9.19G [02:14<00:20, 90.7MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโโ | 7.48G/9.19G [02:14<00:20, 91.6MB/s]
Downloading model_best.mdlus: 81%|โโโโโโโโโ | 7.49G/9.19G [02:15<00:19, 91.9MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.50G/9.19G [02:15<00:22, 80.8MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.51G/9.19G [02:15<00:21, 85.0MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.52G/9.19G [02:15<00:20, 87.6MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.53G/9.19G [02:15<00:20, 88.8MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.54G/9.19G [02:15<00:19, 90.0MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.55G/9.19G [02:15<00:19, 91.1MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.56G/9.19G [02:15<00:19, 89.5MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.57G/9.19G [02:16<00:27, 63.8MB/s]
Downloading model_best.mdlus: 82%|โโโโโโโโโ | 7.58G/9.19G [02:16<00:28, 60.7MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.59G/9.19G [02:16<00:25, 68.1MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.60G/9.19G [02:16<00:32, 52.0MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.61G/9.19G [02:17<00:33, 50.8MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.62G/9.19G [02:17<00:32, 52.8MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.63G/9.19G [02:17<00:33, 50.7MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.64G/9.19G [02:17<00:29, 56.9MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.65G/9.19G [02:17<00:37, 43.8MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.66G/9.19G [02:18<00:32, 51.3MB/s]
Downloading model_best.mdlus: 83%|โโโโโโโโโ | 7.67G/9.19G [02:18<00:28, 58.5MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.68G/9.19G [02:18<00:32, 50.0MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.69G/9.19G [02:18<00:37, 43.7MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.70G/9.19G [02:18<00:30, 52.5MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.71G/9.19G [02:19<00:36, 43.4MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.71G/9.19G [02:19<00:30, 52.1MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.72G/9.19G [02:19<00:26, 59.6MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.73G/9.19G [02:19<00:26, 59.0MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.74G/9.19G [02:19<00:24, 64.3MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.75G/9.19G [02:20<00:36, 42.9MB/s]
Downloading model_best.mdlus: 84%|โโโโโโโโโ | 7.76G/9.19G [02:20<00:37, 40.5MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.77G/9.19G [02:20<00:31, 48.3MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.78G/9.19G [02:20<00:28, 53.1MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.79G/9.19G [02:20<00:24, 61.0MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.80G/9.19G [02:21<00:27, 54.8MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.81G/9.19G [02:21<00:25, 57.0MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.82G/9.19G [02:21<00:23, 62.7MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.83G/9.19G [02:21<00:26, 55.7MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.84G/9.19G [02:21<00:22, 63.4MB/s]
Downloading model_best.mdlus: 85%|โโโโโโโโโ | 7.85G/9.19G [02:22<00:27, 52.1MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.86G/9.19G [02:22<00:32, 44.6MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.87G/9.19G [02:22<00:31, 45.1MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.88G/9.19G [02:22<00:26, 53.0MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.89G/9.19G [02:22<00:22, 61.2MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.90G/9.19G [02:22<00:20, 68.1MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.91G/9.19G [02:23<00:18, 74.5MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.92G/9.19G [02:23<00:17, 79.5MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.93G/9.19G [02:23<00:16, 83.4MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.94G/9.19G [02:23<00:15, 86.4MB/s]
Downloading model_best.mdlus: 86%|โโโโโโโโโ | 7.95G/9.19G [02:23<00:15, 88.0MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 7.96G/9.19G [02:23<00:14, 89.8MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 7.97G/9.19G [02:23<00:14, 91.1MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 7.98G/9.19G [02:23<00:14, 91.8MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 7.99G/9.19G [02:23<00:14, 92.2MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 8.00G/9.19G [02:24<00:13, 92.9MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 8.01G/9.19G [02:24<00:13, 93.1MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 8.02G/9.19G [02:24<00:13, 93.2MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 8.03G/9.19G [02:24<00:13, 93.0MB/s]
Downloading model_best.mdlus: 87%|โโโโโโโโโ | 8.04G/9.19G [02:24<00:13, 93.1MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.05G/9.19G [02:24<00:13, 92.9MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.06G/9.19G [02:24<00:13, 93.2MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.07G/9.19G [02:24<00:12, 93.5MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.08G/9.19G [02:24<00:12, 93.4MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.09G/9.19G [02:25<00:12, 93.5MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.10G/9.19G [02:25<00:12, 94.1MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.11G/9.19G [02:25<00:12, 93.9MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.12G/9.19G [02:25<00:12, 94.3MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.12G/9.19G [02:25<00:12, 94.2MB/s]
Downloading model_best.mdlus: 88%|โโโโโโโโโ | 8.13G/9.19G [02:25<00:12, 94.0MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.14G/9.19G [02:25<00:12, 93.6MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.15G/9.19G [02:25<00:11, 93.7MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.16G/9.19G [02:25<00:12, 91.9MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.17G/9.19G [02:26<00:11, 91.8MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.18G/9.19G [02:26<00:11, 90.7MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.19G/9.19G [02:26<00:11, 90.4MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.20G/9.19G [02:26<00:11, 89.7MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.21G/9.19G [02:26<00:11, 89.6MB/s]
Downloading model_best.mdlus: 89%|โโโโโโโโโ | 8.22G/9.19G [02:26<00:11, 89.8MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.23G/9.19G [02:26<00:11, 90.0MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.24G/9.19G [02:26<00:11, 89.8MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.25G/9.19G [02:27<00:11, 89.5MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.26G/9.19G [02:27<00:11, 89.4MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.27G/9.19G [02:27<00:10, 89.9MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.28G/9.19G [02:27<00:10, 89.2MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.29G/9.19G [02:27<00:10, 89.1MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.30G/9.19G [02:27<00:10, 89.6MB/s]
Downloading model_best.mdlus: 90%|โโโโโโโโโ | 8.31G/9.19G [02:27<00:10, 90.1MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.32G/9.19G [02:27<00:10, 90.1MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.33G/9.19G [02:27<00:10, 88.7MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.34G/9.19G [02:28<00:10, 89.3MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.35G/9.19G [02:28<00:10, 89.5MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.36G/9.19G [02:28<00:09, 90.0MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.37G/9.19G [02:28<00:09, 90.1MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโ | 8.38G/9.19G [02:28<00:09, 89.9MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโโ| 8.39G/9.19G [02:28<00:09, 90.0MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโโ| 8.40G/9.19G [02:28<00:09, 90.1MB/s]
Downloading model_best.mdlus: 91%|โโโโโโโโโโ| 8.41G/9.19G [02:28<00:09, 90.0MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.42G/9.19G [02:29<00:09, 90.1MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.43G/9.19G [02:29<00:09, 89.8MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.44G/9.19G [02:29<00:09, 89.9MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.45G/9.19G [02:29<00:08, 89.6MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.46G/9.19G [02:29<00:08, 89.7MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.47G/9.19G [02:29<00:08, 89.7MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.48G/9.19G [02:29<00:08, 89.4MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.49G/9.19G [02:29<00:08, 89.0MB/s]
Downloading model_best.mdlus: 92%|โโโโโโโโโโ| 8.50G/9.19G [02:29<00:08, 89.1MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.51G/9.19G [02:30<00:08, 89.5MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.52G/9.19G [02:30<00:08, 89.5MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.53G/9.19G [02:30<00:07, 89.7MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.54G/9.19G [02:30<00:07, 89.4MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.54G/9.19G [02:30<00:07, 88.8MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.55G/9.19G [02:30<00:07, 89.4MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.56G/9.19G [02:30<00:07, 88.2MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.57G/9.19G [02:30<00:07, 88.7MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.58G/9.19G [02:31<00:07, 88.9MB/s]
Downloading model_best.mdlus: 93%|โโโโโโโโโโ| 8.59G/9.19G [02:31<00:07, 89.7MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.60G/9.19G [02:31<00:07, 89.8MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.61G/9.19G [02:31<00:06, 89.1MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.62G/9.19G [02:31<00:06, 89.3MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.63G/9.19G [02:31<00:06, 89.3MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.64G/9.19G [02:31<00:06, 89.4MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.65G/9.19G [02:31<00:06, 89.6MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.66G/9.19G [02:31<00:06, 89.4MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.67G/9.19G [02:32<00:06, 89.8MB/s]
Downloading model_best.mdlus: 94%|โโโโโโโโโโ| 8.68G/9.19G [02:32<00:06, 89.8MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.69G/9.19G [02:32<00:05, 89.7MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.70G/9.19G [02:32<00:05, 90.1MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.71G/9.19G [02:32<00:05, 90.3MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.72G/9.19G [02:32<00:05, 89.9MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.73G/9.19G [02:32<00:05, 90.0MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.74G/9.19G [02:32<00:05, 89.6MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.75G/9.19G [02:32<00:05, 90.0MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.76G/9.19G [02:33<00:05, 90.0MB/s]
Downloading model_best.mdlus: 95%|โโโโโโโโโโ| 8.77G/9.19G [02:33<00:05, 89.3MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.78G/9.19G [02:33<00:04, 89.7MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.79G/9.19G [02:33<00:04, 89.0MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.80G/9.19G [02:33<00:04, 89.3MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.81G/9.19G [02:33<00:04, 89.3MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.82G/9.19G [02:33<00:04, 89.2MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.83G/9.19G [02:33<00:04, 89.3MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.84G/9.19G [02:34<00:04, 89.5MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.85G/9.19G [02:34<00:04, 89.8MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.86G/9.19G [02:34<00:03, 89.9MB/s]
Downloading model_best.mdlus: 96%|โโโโโโโโโโ| 8.87G/9.19G [02:34<00:03, 89.8MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.88G/9.19G [02:34<00:03, 90.2MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.89G/9.19G [02:34<00:03, 90.2MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.90G/9.19G [02:34<00:03, 90.7MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.91G/9.19G [02:34<00:03, 90.3MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.92G/9.19G [02:34<00:03, 90.5MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.93G/9.19G [02:35<00:03, 90.7MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.94G/9.19G [02:35<00:03, 90.3MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.95G/9.19G [02:35<00:02, 90.2MB/s]
Downloading model_best.mdlus: 97%|โโโโโโโโโโ| 8.96G/9.19G [02:35<00:02, 90.4MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 8.96G/9.19G [02:35<00:02, 90.2MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 8.97G/9.19G [02:35<00:02, 89.9MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 8.98G/9.19G [02:35<00:02, 89.8MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 8.99G/9.19G [02:35<00:02, 89.9MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 9.00G/9.19G [02:36<00:02, 89.8MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 9.01G/9.19G [02:36<00:02, 89.7MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 9.02G/9.19G [02:36<00:02, 90.1MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 9.03G/9.19G [02:36<00:01, 90.0MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 9.04G/9.19G [02:36<00:01, 90.0MB/s]
Downloading model_best.mdlus: 98%|โโโโโโโโโโ| 9.05G/9.19G [02:36<00:01, 89.7MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.06G/9.19G [02:36<00:01, 90.3MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.07G/9.19G [02:36<00:01, 90.9MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.08G/9.19G [02:36<00:01, 91.8MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.09G/9.19G [02:37<00:01, 92.3MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.10G/9.19G [02:37<00:01, 58.1MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.11G/9.19G [02:37<00:01, 65.7MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.12G/9.19G [02:37<00:01, 72.1MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.13G/9.19G [02:37<00:00, 77.4MB/s]
Downloading model_best.mdlus: 99%|โโโโโโโโโโ| 9.14G/9.19G [02:37<00:00, 81.9MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 9.15G/9.19G [02:37<00:00, 85.2MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 9.16G/9.19G [02:38<00:00, 86.9MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 9.17G/9.19G [02:38<00:00, 88.4MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 9.18G/9.19G [02:38<00:00, 90.0MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 9.19G/9.19G [02:38<00:00, 91.4MB/s]
Downloading model_best.mdlus: 100%|โโโโโโโโโโ| 9.19G/9.19G [02:38<00:00, 62.3MB/s]
Downloading data_processor_best.mdlus: 0%| | 0.00/11.9M [00:00<?, ?B/s]
Downloading data_processor_best.mdlus: 84%|โโโโโโโโโ | 10.0M/11.9M [00:00<00:00, 14.4MB/s]
Downloading data_processor_best.mdlus: 100%|โโโโโโโโโโ| 11.9M/11.9M [00:00<00:00, 16.6MB/s]Manual Forward Pass¶
For more control over the inference loop, Atlas can be called directly using
earth2studio.data.utils.fetch_data for initial conditions and
earth2studio.models.px.Atlas.prep_next_input to advance the sliding
window between steps. This is useful when you need access to intermediate tensors
or want to customize the rollout logic.
Note
For autoregressive rollouts longer than one step, prefer
create_iterator which correctly manages the internal latent state.
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model = model.to(device)
# Get model input coordinate requirements
input_coords = model.input_coords()
# Fetch initial conditions matching the model's expected variables and lead times
time = np.array([np.datetime64("2024-01-01T00:00")])
x, coords = fetch_data(
source=data,
time=time,
variable=input_coords["variable"],
lead_time=input_coords["lead_time"],
device=device,
)
# Add a batch dimension
x = x.unsqueeze(0)
coords["batch"] = np.arange(1)
coords.move_to_end("batch", last=False)
# Run two forward steps manually
n_manual_steps = 2
for step in range(n_manual_steps):
y, y_coords = model(x, coords)
lead_hrs = y_coords["lead_time"][0] / np.timedelta64(1, "h")
print(f"Step {step + 1}: lead_time = {lead_hrs:.0f}h, shape = {y.shape}")
x, coords = model.prep_next_input(y, y_coords, x, coords)
Console output21 lines
Fetching ARCO data: 0%| | 0/15 [00:00<?, ?it/s]
Fetching ARCO data: 7%|โ | 1/15 [00:00<00:02, 5.48it/s]
Fetching ARCO data: 73%|โโโโโโโโ | 11/15 [00:01<00:00, 7.10it/s]
Fetching ARCO data: 80%|โโโโโโโโ | 12/15 [00:01<00:00, 6.28it/s]
Fetching ARCO data: 87%|โโโโโโโโโ | 13/15 [00:02<00:00, 5.61it/s]
Fetching ARCO data: 93%|โโโโโโโโโโ| 14/15 [00:02<00:00, 5.59it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:02<00:00, 5.23it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:02<00:00, 5.83it/s]
Fetching ARCO data: 0%| | 0/15 [00:00<?, ?it/s]
Fetching ARCO data: 7%|โ | 1/15 [00:00<00:02, 4.87it/s]
Fetching ARCO data: 73%|โโโโโโโโ | 11/15 [00:01<00:00, 7.55it/s]
Fetching ARCO data: 80%|โโโโโโโโ | 12/15 [00:01<00:00, 6.92it/s]
Fetching ARCO data: 87%|โโโโโโโโโ | 13/15 [00:01<00:00, 6.59it/s]
Fetching ARCO data: 93%|โโโโโโโโโโ| 14/15 [00:02<00:00, 3.56it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:03<00:00, 3.79it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:03<00:00, 4.98it/s]
2026-08-15 04:59:54.516 | INFO | earth2studio.models.px.atlas:__call__:424 - Atlas input contains NaNs, replacing with 0.0
Step 1: lead_time = 6h, shape = torch.Size([1, 1, 1, 75, 721, 1440])
2026-08-15 05:00:45.546 | INFO | earth2studio.models.px.atlas:__call__:424 - Atlas input contains NaNs, replacing with 0.0
Step 2: lead_time = 12h, shape = torch.Size([1, 1, 1, 75, 721, 1440])Using the model iterator interface¶
For a less verbose approach, we can use the model iterator interface directly, which automatically handles the internal latent state during autoregressive rollout. Simply pass the model and other instantiated components to the workflow, which will automatically use the iterator interface internally and return outputs to the IO handler.
import earth2studio.run as run
nsteps = 3
io = run.deterministic(
["2024-01-01"],
nsteps,
model,
data,
io,
output_coords={"variable": np.array(["u10m", "tcwv"])},
)
print(io.root.tree())
Console output41 lines
2026-08-15 05:02:01.216 | INFO | earth2studio.run:deterministic:85 - Running simple workflow!
2026-08-15 05:02:01.216 | INFO | earth2studio.run:deterministic:92 - Inference device: cuda
Fetching ARCO data: 0%| | 0/15 [00:00<?, ?it/s]
Fetching ARCO data: 73%|โโโโโโโโ | 11/15 [00:00<00:00, 29.59it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:00<00:00, 31.96it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:00<00:00, 31.39it/s]
Fetching ARCO data: 0%| | 0/15 [00:00<?, ?it/s]
Fetching ARCO data: 73%|โโโโโโโโ | 11/15 [00:00<00:00, 34.38it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:00<00:00, 31.42it/s]
Fetching ARCO data: 100%|โโโโโโโโโโ| 15/15 [00:00<00:00, 32.01it/s]
2026-08-15 05:02:03.207 | SUCCESS | earth2studio.run:deterministic:154 - Fetched data from ARCO
2026-08-15 05:02:03.209 | INFO | earth2studio.run:deterministic:162 - Inference starting!
Running inference: 0%| | 0/4 [00:00<?, ?it/s]
2026-08-15 05:02:03.211 | INFO | earth2studio.models.px.atlas:_default_generator:503 - Atlas input contains NaNs, replacing with 0.0
Running inference: 0%| | 0/4 [00:00<?, ?it/s]
Running inference: 25%|โโโ | 1/4 [00:00<00:00, 5.18it/s]
Running inference: 50%|โโโโโ | 2/4 [01:37<01:54, 57.30s/it]
Running inference: 75%|โโโโโโโโ | 3/4 [03:34<01:24, 84.63s/it]
Running inference: 100%|โโโโโโโโโโ| 4/4 [05:28<00:00, 96.01s/it]
Running inference: 100%|โโโโโโโโโโ| 4/4 [05:28<00:00, 82.02s/it]
2026-08-15 05:07:31.276 | SUCCESS | earth2studio.run:deterministic:189 -
Inference complete
/
โโโ lat (721,) float32
โโโ lead_time (4,) timedelta64[h]
โโโ lon (1440,) float32
โโโ tcwv (1, 4, 721, 1440) float32
โโโ time (1,) datetime64[ns]
โโโ u10m (1, 4, 721, 1440) float32Post Processing¶
The last step is to post process our results. We will plot the predicted 10m u-wind component (u10m) and total column water vapour (tcwv) at 12 hours into the forecast.
import cartopy.crs as ccrs
import matplotlib.pyplot as plt
forecast = "2024-01-01"
step = 2 # lead time = 12 hrs into the forecast
plt.close("all")
projection = ccrs.Robinson()
fig, ax = plt.subplots(1, 2, subplot_kw={"projection": projection}, figsize=(16, 5))
# Plot u10m
im0 = ax[0].pcolormesh(
io["lon"][:],
io["lat"][:],
io["u10m"][0, step],
transform=ccrs.PlateCarree(),
cmap="RdBu_r",
vmin=-20,
vmax=20,
)
ax[0].set_title(f"{forecast} - u10m - Lead time: {6*step}hrs")
ax[0].coastlines()
ax[0].gridlines()
plt.colorbar(im0, ax=ax[0], shrink=0.6, pad=0.04, label="m/s")
# Plot tcwv
im1 = ax[1].pcolormesh(
io["lon"][:],
io["lat"][:],
io["tcwv"][0, step],
transform=ccrs.PlateCarree(),
cmap="Blues",
vmin=0,
vmax=70,
)
ax[1].set_title(f"{forecast} - tcwv - Lead time: {6*step}hrs")
ax[1].coastlines()
ax[1].gridlines()
plt.colorbar(im1, ax=ax[1], shrink=0.6, pad=0.04, label="kg/mยฒ")
plt.tight_layout()
plt.savefig("outputs/06_atlas_u10m_tcwv.jpg", dpi=300)
