aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/predictor/predictor_factories.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/predictor/predictor_factories.py')
-rw-r--r--tensorflow/contrib/predictor/predictor_factories.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/predictor/predictor_factories.py b/tensorflow/contrib/predictor/predictor_factories.py
index 04b5d5bdf1..6e77e934fe 100644
--- a/tensorflow/contrib/predictor/predictor_factories.py
+++ b/tensorflow/contrib/predictor/predictor_factories.py
@@ -53,7 +53,7 @@ def from_contrib_estimator(estimator,
`Estimator`.
"""
if isinstance(estimator, core_estimator.Estimator):
- raise TypeError('Espected estimator to be of type '
+ raise TypeError('Expected estimator to be of type '
'tf.contrib.learn.Estimator, but got type '
'tf.python.estimator.Estimator. You likely want to call '
'from_estimator.')
@@ -88,7 +88,7 @@ def from_estimator(estimator,
`Estimator`.
"""
if isinstance(estimator, contrib_estimator.Estimator):
- raise TypeError('Espected estimator to be of type '
+ raise TypeError('Expected estimator to be of type '
'tf.python.estimator.Estimator, but got type '
'tf.contrib.learn.Estimator. You likely want to call '
'from_contrib_estimator.')