Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

OrionChocoPie/deep-learning-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deep Learning Template

Options to use Makefile

make  # stop, build, run

# do the same
make stop
make build
make run

make  # by default all GPUs passed 
make GPUS=all  # do the same
make GPUS=none  # without GPUs

make run GPUS=2  # pass the first two gpus
make run GPUS='\"device=0,1\"'  # pass GPUs numbered 0 and 1

make logs
make exec  # runs a new bash terminal in a running container
make exec COMMAND="bash"  # do the same 
make stop