Initializers#

Initializers are functions that initialize module parameters.

The following table lists the available initializers:

constant

Initialize the array with a constant value.

kaiming_normal

Initialize the array using the Kaiming (aka He) normal initialization method.

kaiming_uniform

Initialize the array using the Kaiming (aka He) uniform initialization method.

ones

Initialize the array with ones.

zeros

Initialize the array with zeros.