Fix formatting error in tf.stack.

PiperOrigin-RevId: 293384841
Change-Id: I7bf5df0f7d8a8078bb2e577538a4f91c21c21b91
This commit is contained in:
A. Unique TensorFlower 2020-02-05 09:28:53 -08:00 committed by TensorFlower Gardener
parent 89d374627a
commit e52ccb7174

View File

@ -1297,7 +1297,7 @@ def stack(values, axis=0, name="stack"):
[2, 5],
[3, 6]], dtype=int32)>
>> tf.stack([x, y, z], axis=1)
>>> tf.stack([x, y, z], axis=1)
<tf.Tensor: shape=(2, 3), dtype=int32, numpy=
array([[1, 2, 3],
[4, 5, 6]], dtype=int32)>