aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/slim
diff options
context:
space:
mode:
authorGravatar Jianwei Xie <xiejw@google.com>2018-03-29 10:50:46 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-29 10:52:55 -0700
commit63dffd5a3bc4e94e74cb140cbf7a68e0e5644ad6 (patch)
tree087e334cd7e71d44cdcd1ce5ebab483768fcf474 /tensorflow/contrib/slim
parent9fbb5b3b8fef1caa2ee2ca4a0f8dde900d1f2aa5 (diff)
Automated g4 rollback of changelist 190858242
PiperOrigin-RevId: 190953197
Diffstat (limited to 'tensorflow/contrib/slim')
-rw-r--r--tensorflow/contrib/slim/python/slim/data/parallel_reader.py4
-rw-r--r--tensorflow/contrib/slim/python/slim/data/prefetch_queue.py4
-rw-r--r--tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/contrib/slim/python/slim/data/parallel_reader.py b/tensorflow/contrib/slim/python/slim/data/parallel_reader.py
index b3343aef47..99ad487630 100644
--- a/tensorflow/contrib/slim/python/slim/data/parallel_reader.py
+++ b/tensorflow/contrib/slim/python/slim/data/parallel_reader.py
@@ -115,8 +115,8 @@ class ParallelReader(io_ops.ReaderBase):
reader needs to start reading from a new file since it has finished with
the previous file).
- A queue runner for enqueing in the `common_queue` is automatically added to
- the TF QueueRunners collection.
+ A queue runner for enqueuing in the `common_queue` is automatically added
+ to the TF QueueRunners collection.
Args:
queue: A Queue or a mutable string Tensor representing a handle
diff --git a/tensorflow/contrib/slim/python/slim/data/prefetch_queue.py b/tensorflow/contrib/slim/python/slim/data/prefetch_queue.py
index 37e9c4754c..62bd200361 100644
--- a/tensorflow/contrib/slim/python/slim/data/prefetch_queue.py
+++ b/tensorflow/contrib/slim/python/slim/data/prefetch_queue.py
@@ -36,9 +36,9 @@ def prefetch_queue(tensors,
dynamic_pad=False,
shared_name=None,
name=None):
- """Creates a queue to prefetech tensors from `tensors`.
+ """Creates a queue to prefetch tensors from `tensors`.
- A queue runner for enqueing tensors into the prefetch_queue is automatically
+ A queue runner for enqueuing tensors into the prefetch_queue is automatically
added to the TF QueueRunners collection.
Example:
diff --git a/tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py b/tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py
index b3b61e1dfe..f2d31dc8db 100644
--- a/tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py
+++ b/tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py
@@ -124,7 +124,7 @@ class BoundingBox(ItemHandler):
super(BoundingBox, self).__init__(self._full_keys)
def tensors_to_item(self, keys_to_tensors):
- """Maps the given dictionary of tensors to a contatenated list of bboxes.
+ """Maps the given dictionary of tensors to a concatenated list of bboxes.
Args:
keys_to_tensors: a mapping of TF-Example keys to parsed tensors.