# Initializers

DL4J supports all available [Keras initializers](https://keras.io/initializers), namely:

* &#x20;Zeros
* &#x20;Ones
* &#x20;Constant
* &#x20;RandomNormal
* &#x20;RandomUniform
* &#x20;TruncatedNormal
* &#x20;VarianceScaling
* &#x20;Orthogonal
* &#x20;Identity
* &#x20;lecun\_uniform
* &#x20;lecun\_normal
* &#x20;glorot\_normal
* &#x20;glorot\_uniform
* &#x20;he\_normal
* &#x20;he\_uniform

The mapping of Keras to DL4J initializers can be found in [KerasInitilizationUtils](https://github.com/eclipse/deeplearning4j/blob/master/deeplearning4j/deeplearning4j-modelimport/src/main/java/org/deeplearning4j/nn/modelimport/keras/utils/KerasInitilizationUtils.java).
