-
Notifications
You must be signed in to change notification settings - Fork 1
Paleoclimate benchmark #114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| observations | ||
| results | ||
| scratch.ipynb | ||
| paleo_data_cache | ||
| .DS_Store | ||
| pangeo-cmip6.csv | ||
| __pycache__ |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -90,10 +90,30 @@ chmod +x run_benchmark.sh | |
|
|
||
| **Paleoclimate data download:** | ||
| ```bash | ||
| cd paleo_scrips/paleo_data_cache | ||
| python paleo_data_cache.py --paleo-period lgm --data-cache-dir path/to/paleo_scrips/paleo_data_cache | ||
| cd paleo_scripts | ||
| python download_paleo.py --source observations | ||
| python download_paleo.py --source cmip6 --model AWI-ESM-1-1-LR --period lgm | ||
| python download_paleo.py --source cmip6 --model all --period all | ||
| ``` | ||
|
|
||
| **Paleoclimate data processing:** | ||
| ```bash | ||
| cd paleo_scripts | ||
| python process_paleo.py --source observations | ||
| python process_paleo.py --source cmip6 --period lgm | ||
|
Comment on lines
+102
to
+103
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The added command Useful? React with 👍 / 👎. |
||
| ``` | ||
|
|
||
| **Paleoclimate benchmark (spatial RMSE/MAE/CRPS):** | ||
| ```bash | ||
| cd paleo_scripts | ||
| python paleo_benchmark.py --model AWI-ESM-1-1-LR --period lgm | ||
| python paleo_benchmark.py --model all --period all | ||
| python paleo_benchmark.py --model MIROC-ES2L --period lgm --use-picontrol | ||
| ``` | ||
|
|
||
| PI reference for anomaly computation: lgmDA Holocene (default) or model piControl (`--use-picontrol`). | ||
| Precipitation benchmarks (Bartlein MAP, Scussolini LIG) require `--use-picontrol` and processed `pr` data. | ||
|
|
||
| ## Architecture | ||
|
|
||
| ### Data Flow | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new paleoclimate instructions call
python download_paleo.py ..., but this repository does not containdownload_paleo.py(the actual entrypoints aredownload_paleo_observations.pyplus thedownload_model_data/*.shscripts). Following this documented command fails immediately, so users/agents cannot execute the advertised download workflow.Useful? React with 👍 / 👎.