Sous-échantillonnage par valeur maximale


Révision datée du 7 mai 2019 à 17:59 par Claude COULOMBE (discussion | contributions) (Nouveau terme)

Domaine


Intelligence artificielle
Apprentissage automatique
Réseau de neurones artificiels
Apprentissage profond
Coulombe

Définition

Le sous-échantillonnage par le maximum (en anglais max-pooling) est une technique utilisée au niveau des couches de partage (pooling layers) des réseaux de neurones convolutifs (RNC) (en anglais Convolutional Neural Networks, CNN) pour sous-échantillonner les données afin de réduire le nombre de paramètres, la quantité de calculs et par conséquent le sur-ajustement (overfitting).

Français

<poll> Choisissez parmi ces termes proposés :

sous-échantillonnage par le maximum
max-pooling

</poll>

Anglais

Max-Pooling

A pooling operations typically used in Convolutional Neural Networks. A max-pooling layer selects the maximum value from a patch of features. Just like a convolutional layer, pooling layers are parameterized by a window (patch) size and stride size. For example, we may slide a window of size 2×2 over a 10×10 feature matrix using stride size 2, selecting the max across all 4 values within each window, resulting in a new 5×5 feature matrix. Pooling layers help to reduce the dimensionality of a representation by keeping only the most salient information, and in the case of image inputs, they provide basic invariance to translation (the same maximum values will be selected even if the image is shifted by a few pixels). Pooling layers are typically inserted between successive convolutional layers.