TensorstdTensor.std() Returns the standard deviation of the tensor. Usage from tinygrad.tensor import Tensor tensor = Tensor([1, 2, 3, 4, 5]) tensor = tensor.std() print(tensor.numpy()) Return value 1.5811388stacksub