Dropout Layers#
Regularization through stochastic neuron dropping during training. Includes standard dropout, spatial dropout variants (1D-3D), alpha dropout for self-normalizing networks, and fixed dropout with deterministic masking. Prevents overfitting by encouraging robust feature learning.
A layer that stochastically ignores a subset of inputs each training step. |
|
Randomly zero out entire channels (a channel is a 1D feature map). |
|
Randomly zero out entire channels (a channel is a 2D feature map). |
|
Randomly zero out entire channels (a channel is a 3D feature map). |
|
Applies Alpha Dropout over the input. |
|
Randomly masks out entire channels with Alpha Dropout properties. |
|
A dropout layer with a fixed dropout mask along the time axis. |