Usage
torch_rrelu_(
self,
lower = 0.125,
upper = 0.333333,
training = FALSE,
generator = NULL
)
Arguments
lower
lower bound of the uniform distribution. Default: 1/8
upper
upper bound of the uniform distribution. Default: 1/3
training
bool wether it's a training pass. DEfault: FALSE
rrelu_(input, lower=1./8, upper=1./3, training=False) -> Tensor
In-place version of torch_rrelu
.