aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-09 10:41:06 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-09 10:44:58 -0800
commit9fcaafd4a9fe6f5868c875749b85c4641c217350 (patch)
treed6143a3e37c176ad4f9bcebaf8628ef6dea4b291
parent4b7d9fec149b3bd96e3eea72c0c3475b293feeb0 (diff)
Fix typo in ValueError string.
PiperOrigin-RevId: 181340112
-rw-r--r--tensorflow/python/estimator/estimator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/estimator/estimator.py b/tensorflow/python/estimator/estimator.py
index bf175cbe01..d0f40bd68e 100644
--- a/tensorflow/python/estimator/estimator.py
+++ b/tensorflow/python/estimator/estimator.py
@@ -614,7 +614,7 @@ class Estimator(object):
if isinstance(result, (list, tuple)):
if len(result) != 2:
raise ValueError(
- 'input_fn should return (feautures, labels) as a len 2 tuple.')
+ 'input_fn should return (features, labels) as a len 2 tuple.')
return result[0], result[1], input_hooks
return result, None, input_hooks