aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-25 12:11:14 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-25 13:17:28 -0700
commit13dc98fd9587c5ad2423757de38a44251c87db56 (patch)
treee713a46d7206f5872bd2c14566360906a016efbc /tensorflow/python
parent468aff2fc6133cfed3cac44c11aa2b96d0e220ad (diff)
Documentation typo: `tf.float` should be `tf.float32` in `parse_example`.
Change: 123244915
Diffstat (limited to 'tensorflow/python')
-rw-r--r--tensorflow/python/ops/parsing_ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/ops/parsing_ops.py b/tensorflow/python/ops/parsing_ops.py
index fa6696cbbc..9d3a135cf0 100644
--- a/tensorflow/python/ops/parsing_ops.py
+++ b/tensorflow/python/ops/parsing_ops.py
@@ -225,7 +225,7 @@ def parse_example(serialized, features, name=None, example_names=None):
features: {
"kw": VarLenFeature(tf.string),
"dank": VarLenFeature(tf.int64),
- "gps": VarLenFeature(tf.float),
+ "gps": VarLenFeature(tf.float32),
}
```