Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 1018 Bytes

initializers.rst

File metadata and controls

63 lines (40 loc) · 1018 Bytes

Weight Initializers

Weight initializer is an instance of ~chainer.Initializer that destructively edits the contents of numpy.ndarray or cupy.ndarray. Typically, weight initializers are passed to __init__ of ~chainer.Link and initializes its the weights and biases.

chainer.initializer

Base class

Initializer

chainer.initializers

Concrete initializers

Identity

Constant

Zero

One

Normal

GlorotNormal

HeNormal

Orthogonal

Uniform

LeCunUniform

GlorotUniform

HeUniform

chainer

Helper function

init_weight