> For the complete documentation index, see [llms.txt](https://deeplearning4j.konduit.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://deeplearning4j.konduit.ai/en-1.0.0-beta6/keras-import/supported-features/initializers.md).

# 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).
