Go to file
2020-03-03 20:53:34 -05:00
map2map Fix bug from 1963530 to show last instead of 2nd layer gradients 2020-03-03 20:53:34 -05:00
scripts Add runtime address and port determination and share them via file 2020-02-13 19:56:54 -06:00
.gitignore Initial commit 2019-11-30 15:27:25 -05:00
LICENSE Initial commit 2019-11-30 15:27:25 -05:00
README.md Add instructions 2020-03-03 20:23:13 -05:00
setup.py Change tensorboard to optional dependency 2020-01-23 09:58:54 -05:00

map2map

Neural network emulators to transform field/map data

Installation

Install in editable mode

pip install -e .

Usage

Take a look at the examples in scripts/*.slurm, and the command line options in map2map/args.py or by m2m.py -h.

data

Structure your data to start with the channel axis and then the spatial dimensions. Put each sample in one file. Specify the data path with glob patterns.

data normalization

Input and target (output) data can be normalized by functions defined in map2map2/data/norms/.

model

Find the models in map2map/models/. Customize the existing models, or add new models there and edit the __init__.py.