Python wrappers
Public Python APIs implemented by this engine symbol.Compute the (biased) standard deviation along axes.
Defined as , where the underlying variance uses the biased
estimator . No new backward node
is needed: the gradient flows naturally through SqrtBackward and
VarBackward via the chain rule.
Math
See Also
var_op — variance the standard deviation is built on.
Parameters
aTensorImplPtrInput tensor of float dtype.
axesstd::vector<int>Axes to reduce. Negative indices wrap.
keepdimsboolIf
true, retains reduced dims as size-1.Returns
TensorImplPtrOutput tensor of the reduced shape.