Alpha_dropout
Applies alpha dropout to the input.
nnf_alpha_dropout(input, p = 0.5, training = FALSE, inplace = FALSE)
input
: the input tensorp
: probability of an element to be zeroed. Default: 0.5training
: apply dropout if is TRUE
. Default: TRUE
inplace
: If set to TRUE
, will do this operation in-place. Default: FALSE
Useful links