Module: tf.keras.initializers | TensorFlow Core v2.7.0
www.tensorflow.org › python › tfclass ones: Initializer that generates tensors initialized to 1. class orthogonal: Initializer that generates an orthogonal matrix. class random_normal: Initializer that generates tensors with a normal distribution. class random_uniform: Initializer that generates tensors with a uniform distribution. class truncated_normal: Initializer that ...
Layer weight initializers - Keras
keras.io › api › layersThe Glorot normal initializer, also called Xavier normal initializer. Also available via the shortcut function tf.keras.initializers.glorot_normal. Draws samples from a truncated normal distribution centered on 0 with stddev = sqrt (2 / (fan_in + fan_out)) where fan_in is the number of input units in the weight tensor and fan_out is the number ...