A cookiecutter template for deep learning research
author_name
: your nameproject_name
: your project nameproject_description
: description of your project (this will be inserted toREADME.md
)jupyter_port
: a port to access JupyterLab running on a containertensorboard_port
: a port to access TensorBoard running on a container
Run following commands:
$ cookiecutter https://github.com/eqs/cookiecutter-dl-work
# cd to generated project dir
$ docker-compose build # (or docker-compose build --no-cache)
$ docker-compose up -d
Access following URLs from web browser:
localhost:<jupyter_port>
localhost:<tensorboard_port>
Happy deep learning!