Fix typo in ValueError string.
authorA. Unique TensorFlower <gardener@tensorflow.org>
Tue, 9 Jan 2018 18:41:06 +0000 (10:41 -0800)
committerTensorFlower Gardener <gardener@tensorflow.org>
Tue, 9 Jan 2018 18:44:58 +0000 (10:44 -0800)
PiperOrigin-RevId: 181340112

tensorflow/python/estimator/estimator.py

index bf175cbe01eab1ab4f658e13e5e7190f760b01f1..d0f40bd68e0b406e60d8b01f6107abb9a6451d33 100644 (file)
@@ -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