K

Kaiming Initialization

None

Kaiming Initialization is a method for setting initial weights in neural networks to improve training efficiency.

Kaiming Initialization

Kaiming Initialization, also known as He Initialization, is a technique used to initialize the weights of neural networks, particularly those employing activation functions like ReLU (Rectified Linear Unit). Proper weight initialization is crucial as it can significantly affect the convergence speed and overall performance of the network during training.

The method was introduced by Kaiming He and his collaborators in a 2015 paper. It aims to address the issues of vanishing and exploding gradients that can occur during the training of deep networks. These issues arise when weights are initialized too small or too large, leading to ineffective learning.

In Kaiming Initialization, weights are drawn from a Gaussian distribution with a mean of 0 and a variance that is inversely proportional to the number of input units (fan-in) for each neuron. Specifically, the weights are initialized using the formula:

w ~ N(0, sqrt(2 / fan_in))

Where w represents the weight, N denotes a normal distribution, and fan_in is the number of input connections to the neuron. This approach helps maintain a balanced distribution of activations throughout the layers of the network, promoting effective gradient flow during backpropagation.

Kaiming Initialization is particularly effective in deep networks with ReLU and its variants but can be adapted for other activation functions with slight modifications. As a result, it has become a standard practice in training deep learning models, contributing to faster and more stable convergence rates.

Ctrl + /