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

Fix minor typos #19070

Merged
merged 1 commit into from
May 4, 2018
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion tensorflow/python/estimator/training.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ def after_save(self, session, global_step_value):
# max_steps, the evaluator will send the final export signal. There is a
# small chance that the Estimator.train stopping logic sees a different
# global_step value (due to global step race condition and the fact the
# saver sees a larger value for checkpoing saving), which does not end
# saver sees a larger value for checkpoint saving), which does not end
# the training. When the training ends, a new checkpoint is generated, which
# triggers the listener again. So, it could be the case the final export is
# triggered twice.
Expand Down
4 changes: 2 additions & 2 deletions tensorflow/python/feature_column/feature_column.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def input_layer(features,
# TODO(akshayka): InputLayer should be a subclass of Layer, and it
# should implement the logic in input_layer using Layer's build-and-call
# paradigm; input_layer should create an instance of InputLayer and
# return the result of inovking its apply method, just as functional layers do.
# return the result of invoking its apply method, just as functional layers do.
class InputLayer(object):
"""An object-oriented version of `input_layer` that reuses variables."""

Expand Down Expand Up @@ -834,7 +834,7 @@ def shared_embedding_columns(
tensor_name_in_ckpt=None, max_norm=None, trainable=True):
"""List of dense columns that convert from sparse, categorical input.

This is similar to `embedding_column`, except that that it produces a list of
This is similar to `embedding_column`, except that it produces a list of
embedding columns that share the same embedding weights.

Use this when your inputs are sparse and of the same type (e.g. watched and
Expand Down