> 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-m1.1/deeplearning4j/how-to-guides/keras-import/supported-features/initializers.md).

# 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/eclipse/deeplearning4j/blob/master/deeplearning4j/deeplearning4j-modelimport/src/main/java/org/deeplearning4j/nn/modelimport/keras/utils/KerasInitilizationUtils.java).
