Skip to content

nn_template

CI Docs NN Template Python Code style: black

Template with many tools

Installation

pip install git+ssh://git@github.com/fnauman/nn_template.git

Quickstart

Development installation

Setup the development environment:

git clone git@github.com:fnauman/nn_template.git
cd nn_template
conda env create -f env.yaml
conda activate nn_template
pre-commit install

Run the tests:

pre-commit run --all-files
pytest -v

Update the dependencies

Re-install the project in edit mode:

pip install -e .[dev]
Back to top