--- title: Keras Initializers short_title: Initializers description: Supported Keras weight initializers. category: Keras Import weight: 4 --- ## Supported initializers DL4J supports all available [Keras initializers](https://keras.io/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](https://github.com/deeplearning4j/deeplearning4j/blob/master/deeplearning4j/deeplearning4j-modelimport/src/main/java/org/deeplearning4j/nn/modelimport/keras/utils/KerasInitilizationUtils.java).