aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-09-17 15:56:43 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-17 16:06:38 -0700
commitf5116dd366a5bb1d679e1682c13b8fa3c4830a84 (patch)
treeca4f8c480a900b3209ad5c6f96947eb84a440661 /tensorflow/python
parent8ea4ea95ad1e85948019daee7a9e70e97082f6d0 (diff)
Fixing the documentation of the parse_sequence_example function.
PiperOrigin-RevId: 213354240
Diffstat (limited to 'tensorflow/python')
-rw-r--r--tensorflow/python/ops/parsing_ops.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tensorflow/python/ops/parsing_ops.py b/tensorflow/python/ops/parsing_ops.py
index bb8da3162a..b3e03a0135 100644
--- a/tensorflow/python/ops/parsing_ops.py
+++ b/tensorflow/python/ops/parsing_ops.py
@@ -981,9 +981,10 @@ def parse_sequence_example(serialized,
name: A name for this operation (optional).
Returns:
- A tuple of two `dict`s, each mapping keys to `Tensor`s and `SparseTensor`s.
- The first dict contains the context key/values.
- The second dict contains the feature_list key/values.
+ A tuple of three `dict`s, each mapping keys to `Tensor`s and
+ `SparseTensor`s. The first dict contains the context key/values,
+ the second dict contains the feature_list key/values, and the final dict
+ contains the lengths of any dense feature_list features.
Raises:
ValueError: if any feature is invalid.