| #!/usr/bin/env python3 | |
| """Train the official 1.4-degree deterministic climate-scale profile.""" | |
| from __future__ import annotations | |
| try: | |
| from train import main as _train_main | |
| except ModuleNotFoundError: # supports ``python -m scripts.train_climate_scale`` | |
| from scripts.train import main as _train_main | |
| if __name__ == "__main__": | |
| _train_main(forced_mode="climate_scale") | |