File size: 397 Bytes
f4a39ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env python3
"""Train the 1.4-degree stochastic profile with public two-member CRPS."""
from __future__ import annotations
try:
from train import main as _train_main
except ModuleNotFoundError: # supports ``python -m scripts.train_stochastic_1_4_deg``
from scripts.train import main as _train_main
if __name__ == "__main__":
_train_main(forced_mode="stochastic_1_4_deg")
|