Quick Start¶
Training a Model¶
Training is configured via YAML files. To launch a training run with the default Samudra configuration:
The FOMO model supports multi-scale training across different resolutions:
Data Paths¶
Training configs reference OM4 ocean model data stored in Zarr format. Update the data paths in your config to point to your data location:
# configs/data/om4.yaml
data:
path: "s3://<your-bucket>/path/to/OM4.zarr" # Update with your data path
See configs/data/ for example data configurations at 1°, 1/2°, and 1/4° resolutions.
Evaluation¶
Run a long autoregressive rollout against ground-truth data:
This produces metrics (RMSE, bias, anomaly correlation) and writes predicted fields to a Zarr output file.
Visualization¶
Generate maps, time series, and probability density plots from evaluation outputs:
Configuration¶
All commands accept --help for available options:
You can override any config key from the command line:
See Configuration for details on the configuration system.