In-place SELU — overwrites x with selu(x).
Uses the canonical SELU coefficients (Klambauer 2017); intended for use only inside Self-Normalising Networks where the input was initialised with LeCun-normal and downstream blocks expect the SELU fixed-point statistics.
Parameters
Input; modified in place.
inplacebool= TrueIgnored. Default
True.Returns
TensorThe same x tensor, now holding selu(x).