aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-26 17:46:06 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-26 17:49:16 -0700
commit9b30dc3a824fd277fcd622a458b25f26c0db7b72 (patch)
tree3fa5c4ed2b36e24e9a906848005b02295e58cb0d /tensorflow
parent423c1eea0e47eb71d3bf3ec7e99e7a4a63c3e433 (diff)
Remove final mentions of `get_shape` in docstring.
PiperOrigin-RevId: 163282839
Diffstat (limited to 'tensorflow')
-rw-r--r--tensorflow/python/training/input.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/python/training/input.py b/tensorflow/python/training/input.py
index 94c5df619f..704017c244 100644
--- a/tensorflow/python/training/input.py
+++ b/tensorflow/python/training/input.py
@@ -884,7 +884,7 @@ def batch(tensors, batch_size, num_threads=1, capacity=32,
`batch_size` is returned when the queue is closed and there are not enough
elements to fill the batch, otherwise the pending elements are discarded.
In addition, all output tensors' static shapes, as accessed via the
- `get_shape` method will have a first `Dimension` value of `None`, and
+ `shape` property will have a first `Dimension` value of `None`, and
operations that depend on fixed batch_size would fail.
Args:
@@ -1038,7 +1038,7 @@ def batch_join(tensors_list, batch_size, capacity=32, enqueue_many=False,
`batch_size` is returned when the queue is closed and there are not enough
elements to fill the batch, otherwise the pending elements are discarded.
In addition, all output tensors' static shapes, as accessed via the
- `get_shape` method will have a first `Dimension` value of `None`, and
+ `shape` property will have a first `Dimension` value of `None`, and
operations that depend on fixed batch_size would fail.
Args:
@@ -1183,7 +1183,7 @@ def shuffle_batch(tensors, batch_size, capacity, min_after_dequeue,
`batch_size` is returned when the queue is closed and there are not enough
elements to fill the batch, otherwise the pending elements are discarded.
In addition, all output tensors' static shapes, as accessed via the
- `get_shape` method will have a first `Dimension` value of `None`, and
+ `shape` property will have a first `Dimension` value of `None`, and
operations that depend on fixed batch_size would fail.
Args:
@@ -1325,7 +1325,7 @@ def shuffle_batch_join(tensors_list, batch_size, capacity,
`batch_size` is returned when the queue is closed and there are not enough
elements to fill the batch, otherwise the pending elements are discarded.
In addition, all output tensors' static shapes, as accessed via the
- `get_shape` method will have a first `Dimension` value of `None`, and
+ `shape` property will have a first `Dimension` value of `None`, and
operations that depend on fixed batch_size would fail.
Args: