Learn R Programming

torch (version 0.0.2)

torch_var: Var

Description

Var

Arguments

input

(Tensor) the input tensor.

unbiased

(bool) whether to use the unbiased estimation or not

dim

(int or tuple of ints) the dimension or dimensions to reduce.

keepdim

(bool) whether the output tensor has dim retained or not.

out

(Tensor, optional) the output tensor.

var(input, unbiased=True) -> Tensor

Returns the variance of all elements in the input tensor.

If unbiased is False, then the variance will be calculated via the biased estimator. Otherwise, Bessel's correction will be used.

var(input, dim, keepdim=False, unbiased=True, out=None) -> Tensor

Returns the variance of each row of the input tensor in the given dimension dim.

If keepdim is True, the output tensor is of the same size as input except in the dimension(s) dim where it is of size 1. Otherwise, dim is squeezed (see torch_squeeze), resulting in the output tensor having 1 (or len(dim)) fewer dimension(s).

If unbiased is False, then the variance will be calculated via the biased estimator. Otherwise, Bessel's correction will be used.

Examples

Run this code
# NOT RUN {
if (torch_is_installed()) {

a = torch_randn(c(1, 3))
a
torch_var(a)


a = torch_randn(c(4, 4))
a
torch_var(a, 1)
}
# }

Run the code above in your browser using DataLab