| Interface | Description |
|---|---|
| IDropout |
IDropout instances operate on an activations array, modifying or dropping values at training time only.
|
| Class | Description |
|---|---|
| AlphaDropout |
AlphaDropout is a dropout technique proposed by Klaumbauer et al.
|
| Dropout |
Implements standard (inverted) dropout.
Regarding dropout probability. |
| GaussianDropout |
Gaussian dropout.
|
| GaussianNoise |
Applies additive, mean-zero Gaussian noise to the input - i.e., x = x + N(0,stddev).
Note that this differs from GaussianDropout, which applies Note also that schedules for the standard deviation value can also be used. |
| SpatialDropout |
Spatial dropout: can only be applied to 4D (convolutional) activations.
|
Copyright © 2018. All rights reserved.