chainer.initializers.Uniform

class chainer.initializers.Uniform(scale=0.05, dtype=None)[source]

Initializes array with a scaled uniform distribution.

Each element of the array is initialized by the value drawn independently from uniform distribution \([-scale, scale]\).

Variables:
  • scale (float) – A constant that determines the scale of the uniform distribution.
  • dtype – Data type specifier.

Methods

__call__(array)[source]