Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small typo fix #20876

Merged
merged 2 commits into from
Aug 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions tensorflow/python/data/ops/iterator_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ def from_string_handle(string_handle,

This method allows you to define a "feedable" iterator where you can choose
between concrete iterators by feeding a value in a @{tf.Session.run} call.
In that case, `string_handle` would a @{tf.placeholder}, and you would feed
it with the value of @{tf.data.Iterator.string_handle} in each step.
In that case, `string_handle` would be a @{tf.placeholder}, and you would
feed it with the value of @{tf.data.Iterator.string_handle} in each step.

For example, if you had two iterators that marked the current position in
a training dataset and a test dataset, you could choose which to use in
Expand Down