Creates a tensor with all elements set to zero.
创建一个张量,所有元素都设为零。
This operation returns a tensor of type dtype with shape shape and all elements set to zero.
这个操作返回一个具有shape形状的dtype类型的张量,所有元素都设置为零。
For example:
tf.zeros([3, 4], tf.int32) # [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]