torch.StdVarOptions
export interface StdVarOptions<OutShape extends Shape = Shape> {
/** If true, keeps the reduced dimension with size 1 for broadcasting. */
keepdim?: boolean;
/** Bessel's correction. 0 for biased, 1 for unbiased (default). */
correction?: number;
/** Pre-allocated output tensor. */
out?: Tensor<OutShape>;
}OutShapeextends Shapekeepdim(boolean)optional- – If true, keeps the reduced dimension with size 1 for broadcasting.
correction(number)optional- – Bessel's correction. 0 for biased, 1 for unbiased (default).
out(Tensor<OutShape>)optional- – Pre-allocated output tensor.
Options for std and var operations