A lightweight deep learning library.
pip install -e .
pip install dlwheel
from pprint import pprint
import dlwheel
cfg = dlwheel.setup()
pprint(cfg)
Use the --backup
flag to enable automatic backup (stored in ./log
by default):
python main.py --backup
# config/default.yaml
lr: 1e-3
batch_size: 32
python main.py --config=config/exp.yaml --name=exp batch_size=2 lr=0.1