Initializers

Supported Keras weight initializers.

DL4J supports all available Keras initializers, namely:

  • Zeros

  • Ones

  • Constant

  • RandomNormal

  • RandomUniform

  • TruncatedNormal

  • VarianceScaling

  • Orthogonal

  • Identity

  • lecun_uniform

  • lecun_normal

  • glorot_normal

  • glorot_uniform

  • he_normal

  • he_uniform

The mapping of Keras to DL4J initializers can be found in KerasInitilizationUtils.

Last updated