aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lookup
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-03-16 08:59:02 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-16 09:03:12 -0700
commit09d3d2dcc1b1b9ee7282b37bc4e0f212c577f6a2 (patch)
treecd18d330dccd75ee27951e85ff34ffca6cf2f3bf /tensorflow/contrib/lookup
parentf4c6bd6b422c6383ac814c50aa2243442e1049cc (diff)
Fix a typo in docstring for index_table_from_tensor.
PiperOrigin-RevId: 189345585
Diffstat (limited to 'tensorflow/contrib/lookup')
-rw-r--r--tensorflow/contrib/lookup/lookup_ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/lookup/lookup_ops.py b/tensorflow/contrib/lookup/lookup_ops.py
index 62f1c810fc..a57a1e5421 100644
--- a/tensorflow/contrib/lookup/lookup_ops.py
+++ b/tensorflow/contrib/lookup/lookup_ops.py
@@ -105,7 +105,7 @@ def index_table_from_tensor(mapping,
...
tf.tables_initializer().run()
- ids.eval() ==> [0, 1, 4, 2]
+ ids.eval() ==> [0, 1, 3, 2]
```
Args: