B

Capa de Normalización por lotes

BN

Una capa de Normalización por lotes normaliza las entradas para estabilizar y acelerar el entrenamiento del aprendizaje profundo.

Normalización por lotes Capa is a technique used in aprendizaje profundo to improve the training of redes neuronales. It works by normalizing the inputs to a layer of a neural network, which helps to stabilize the learning process and can lead to faster convergence.

During training, the inputs to the Batch Normalization Layer are standardized by subtracting the batch mean and dividing by the batch standard deviation. This process transforms the input to have a mean of zero and a variance of one for each mini-batch of data processed. Additionally, Batch Normalization introduces two learnable parameters, gamma and beta, which allow the model to scale and shift the salida normalizada. This flexibility enables the network to maintain the capacity to represent complex functions.

La normalización por lotes tiene varios beneficios. En primer lugar, reduce el problema de desplazamiento covariante interno, where the distribution of network activations changes during training, which can slow down training. Secondly, it allows for the use of higher learning rates, leading to faster training times. Moreover, it can act as a form of regularization, reducing the need for other techniques like dropout, since it introduces some noise during training.

Aunque la normalización por lotes se usa comúnmente en redes neuronales convolucionales (CNNs) and fully connected networks, it may not be as effective in certain architectures, such as recurrent neural networks (RNNs), due to the dependency of the sequence of inputs. Nonetheless, it remains a popular and powerful tool for improving the performance of deep learning models.

oEmbed (JSON) + /