Awesome
Weight Normalization Layer for Chainer
code for the paper Weight Normalization: A Simple Reparameterization to Accelerate Training of Deep Neural Networks
Requirements
- Chainer 1.17
Usage
Installation
YOUR PROJECT DIR
├── weightnorm
│ ├── __init__.py
│ ├── convolution_2d.py
│ ├── deconvolution_2d.py
│ └── linear.py
Running
before:
import chainer
layer = chainer.links.Linear(...)
after:
import weightnorm
layer = weightnorm.Linear(...)