Keras layers API
keras.io › api › layersKeras layers API. Layers are the basic building blocks of neural networks in Keras. A layer consists of a tensor-in tensor-out computation function (the layer's call method) and some state, held in TensorFlow variables (the layer's weights).
Layer weight initializers - Keras
keras.io › api › layersVarianceScaling (scale = 1.0, mode = "fan_in", distribution = "truncated_normal", seed = None) Initializer capable of adapting its scale to the shape of weights tensors. Also available via the shortcut function tf.keras.initializers.variance_scaling .