Initialisation de Kaiming
Initialisation de Kaiming, également connue sous le nom de Initialisation He, is a technique used to initialize the weights of réseaux neuronaux, particularly those employing fonctions d'activation like ReLU (Rectified Linear Unit). Proper initialisation des poids 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 gradients explosifs 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.
Dans l'initialisation de Kaiming, les poids sont tirés d'un distribution gaussienne 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 distribution normale, 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 apprentissage profond modèles, contribuant à des taux de convergence plus rapides et plus stables.