aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/estimator
diff options
context:
space:
mode:
authorGravatar Jon Perl <perl.jonathan@gmail.com>2018-07-15 19:58:24 -0400
committerGravatar Jon Perl <perl.jonathan@gmail.com>2018-07-15 19:58:24 -0400
commitfe666a2bd2d99dfbdfe696e9d0424eb1aa236ece (patch)
tree1f9c6674246e3c1bc879477fefc4cfd9c752282c /tensorflow/contrib/estimator
parent05f41cb39598fcdcd4510cdf1c1bf4b4c9fe4868 (diff)
Fix timer in InMemoryEvaluatorHook
Diffstat (limited to 'tensorflow/contrib/estimator')
-rw-r--r--tensorflow/contrib/estimator/python/estimator/hooks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/estimator/python/estimator/hooks.py b/tensorflow/contrib/estimator/python/estimator/hooks.py
index ddd6aa442f..caadafdfa6 100644
--- a/tensorflow/contrib/estimator/python/estimator/hooks.py
+++ b/tensorflow/contrib/estimator/python/estimator/hooks.py
@@ -189,7 +189,7 @@ class InMemoryEvaluatorHook(training.SessionRunHook):
init_fn=feed_variables, copy_from_scaffold=self._scaffold)
with self._graph.as_default():
- return self._estimator._evaluate_run(
+ self._estimator._evaluate_run(
checkpoint_path=None,
scaffold=scaffold,
update_op=self._update_op,