PyTorch training code for climate modeling
Project description
Machine learning approaches to convective parametrization
Documentation
The documentation is hosted on github pages: https://nbren12.github.io/uwnet/
Setup
Obtaining permission to use SAM
The System for Atmospheric Modeling (SAM) is a key part of the pre-processing pipeline and prognostic evaluation of this machine learning project, but it is not necessary for offline evaluation or training.
If you want access to SAM, please email the author Marat Khairoutdinov (cc'ing me) to ask for permission. Then, I can give you access to the slightly modified version of SAM used for this project.
Once you have arranged this access, the SAM source code can be download to the
path ext/sam
using
git submodule --init --recursive
Setting up the environment
This project uses two dependency management systems. Docker is needed to run the SAM model and SAM-related preprocessing steps. you do not need this if you are only training a model from pre-processed data (the data in zenodo). Poetry is a simpler pure python solution that should work for most common scenarios.
To use docker, you first need to build the image:
make build_image
If you get an error make: nvidia-docker: Command not found
, edit the
Makefile to have DOCKER = docker
instead of nvidia-docker
. (Assuming
docker is already installed.) Then, the docker environment can be entered by
typing
make enter
This opens a shell variable in a docker container with all the necessary software requirements.
To use poetry, you can install all the needed packages and enter a sandboxed environment by running
poetry install
poetry shell
The instructions below assume you are in one of these environments
Running the workflow
To run train the models, type
snakemake -j <number of parallel jobs>
This will take a long time! To see all the steps and the corresponding commands in this workflow, type
snakemake -n -p
This whole analysis is specified in the Snakefile, which is the first place to look.
To reproduce the plots for the Journal of Atmospheric science paper, run
make jas2020
The figures for this paper requires you to install chromedriver to export to svg format. I did this on my mac with these commands:
# for svg saving from altair
brew install chromedriver
# on mac os to allow unverified developers
xattr -d com.apple.quarantine /usr/local/bin/chromedriver
You also need to install Inkscape to convert the svg to pdf format.
Evaluating performance
Evaluating ML Paramerizations is somewhat different than normal ML scoring.
Some useful metrics which work for xarray data are available in
uwnet.metrics
. In particular uwnet.metrics.r2_score
computes the ubiquitous
R2 score.
Performing online tests
SAM has been modified to call arbitrary python functions within it's time stepping loop. These python functions accept a dictionary of numpy arrays as inputs, and store output arrays with specific names to this dictionary. Then SAM will pull the output contents of this dictionary back into Fortran and apply any computed tendency.
To extend this, one first needs to write a suitable function, which can be tested using the data stored at assets/sample_sam_state.pt
. The following steps explore this data
In [5]: state = torch.load("assets/sample_sam_state.pt")
In [6]: state.keys()
Out[6]: dict_keys(['layer_mass', 'p', 'pi', 'caseid', 'case', 'liquid_ice_static_energy', '_DIMS', '_ATTRIBUTES', 'total_water_mixing_ratio', 'air_temperature', 'upward_air_velocity', 'x_wind', 'y_wind', 'tendency_of_total_water_mixing_ratio_due_to_dynamics', 'tendency_of_liquid_ice_static_energy_due_to_dynamics', 'tendency_of_x_wind_due_to_dynamics', 'tendency_of_y_wind_due_to_dynamics', 'latitude', 'longitude', 'sea_surface_temperature', 'surface_air_pressure', 'toa_incoming_shortwave_flux', 'surface_upward_sensible_heat_flux', 'surface_upward_latent_heat_flux', 'air_pressure', 'air_pressure_on_interface_levels', 'dt', 'time', 'day', 'nstep'])
In [7]: qt = state['total_water_mixing_ratio']
In [8]: qt.shape
Out[8]: (34, 64, 128)
In [9]: state['sea_surface_temperature'].shape
Out[9]: (1, 64, 128)
In [10]: state['air_pressure_on_interface_levels'].shape
Out[10]: (35,)
In [11]: state['p'].shape
Out[11]: (34,)
In [12]: state['_ATTRIBUTES']
Out[12]:
{'liquid_ice_static_energy': {'units': 'K'},
'total_water_mixing_ratio': {'units': 'g/kg'},
'air_temperature': {'units': 'K'},
'upward_air_velocity': {'units': 'm/s'},
'x_wind': {'units': 'm/s'},
'y_wind': {'units': 'm/s'},
'tendency_of_total_water_mixing_ratio_due_to_dynamics': {'units': 'm/s'},
'tendency_of_liquid_ice_static_energy_due_to_dynamics': {'units': 'm/s'},
'tendency_of_x_wind_due_to_dynamics': {'units': 'm/s'},
'tendency_of_y_wind_due_to_dynamics': {'units': 'm/s'},
'latitude': {'units': 'degreeN'},
'longitude': {'units': 'degreeN'},
'sea_surface_temperature': {'units': 'K'},
'surface_air_pressure': {'units': 'mbar'},
'toa_incoming_shortwave_flux': {'units': 'W m^-2'},
'surface_upward_sensible_heat_flux': {'units': 'W m^-2'},
'surface_upward_latent_heat_flux': {'units': 'W m^-2'},
'air_pressure': {'units': 'hPa'}}
In [13]: # tendence of total water mixing ratio expected units = g/kg/day
In [14]: # tendence of tendency_of_liquid_ice_static_energy expected units =K/day
Configuring SAM to call this function
Write uwnet.sam_interface.call_random_forest
rule sam_run in Snakefile actually runs the SAM model.
parameters as a json file are passed to src.sam.create_case via -p flag.
Example parameters at assets/parameters_sam_neural_network.json.
parameters['python'] configures which python function is called.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file uwnet-0.9.2.tar.gz
.
File metadata
- Download URL: uwnet-0.9.2.tar.gz
- Upload date:
- Size: 71.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4be1b106423aabc607806f2fa50783eed0fd77cde01f288c5b899750479ccef1 |
|
MD5 | 035bcfc0cfa72b84586ec085171040d1 |
|
BLAKE2b-256 | 8055cd56ea302ff35dccd6c578031c51e4f327f8e09463e79936531d16f522b8 |
File details
Details for the file uwnet-0.9.2-py3-none-any.whl
.
File metadata
- Download URL: uwnet-0.9.2-py3-none-any.whl
- Upload date:
- Size: 90.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9ea2deb4546c07e4e8b5a3c6eaff6e59cf9a6b10db3cc19c7321c2efc0b5036 |
|
MD5 | 5e125379090e11555eeb71106f907143 |
|
BLAKE2b-256 | 9bd0d96c6b63c1ca19d733e7f031302993344dfffb021d61764589577bbabf47 |