ndarray
autograd
loss
mxnet.ndarray.
rcbrt
Returns element-wise inverse cube-root value of the input.
Example:
rcbrt([1,8,-125]) = [1.0, 0.5, -0.2]
Defined in src/operator/tensor/elemwise_unary_op_basic.cc:L930
data (NDArray) – The input array.
out (NDArray, optional) – The output NDArray to hold the result.
out – The output of this function.
NDArray or list of NDArrays