TensorZerosTensor.zeros() Creates a tensor filled with zeros with the given shape. Usage from tinygrad.tensor import Tensor x = Tensor.zeros(3, 3) print(x.numpy()) Return value [[0. 0. 0.] [0. 0. 0.] [0. 0. 0.]]WhereZeros Like