NeuralGCM / scripts /train_forecast_2_8_deg.py
yzt15806542928's picture
Upload folder using huggingface_hub
f4a39ee verified
Raw
History Blame Contribute Delete
386 Bytes
#!/usr/bin/env python3
"""Train the official 2.8-degree deterministic forecast profile."""
from __future__ import annotations
try:
from train import main as _train_main
except ModuleNotFoundError: # supports ``python -m scripts.train_forecast_2_8_deg``
from scripts.train import main as _train_main
if __name__ == "__main__":
_train_main(forced_mode="forecast_2_8_deg")