nn_alpha_dropout | R Documentation |
An alpha-dropout layer as a torch::nn_module
, used in self-normalizing networks.
nn_alpha_dropout(p = 0.5, inplace = FALSE)
p |
probability for dropout. |
inplace |
whether the dropout in performed inplace. |
The constructor allows specifying:
probability of an element to be zeroed (default is 0.5),
if set to TRUE, will do the operation in-place (default is FALSE).
Gunter Klambauer, Thomas Unterthiner, Andreas Mayr, Sepp Hochreiter. Self-Normalizing Neural Networks. Advances in Neural Information Processing Systems 30 (NIPS 2017), 2017.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.