Creates a tensor filled with zeros.
factory Tensor.zeros(List<int> shape) { final size = _productOfShape(shape); return Tensor(Float32List(size), List<int>.from(shape)); }