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.