aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/timeseries/python/timeseries/math_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/timeseries/python/timeseries/math_utils.py')
-rw-r--r--tensorflow/contrib/timeseries/python/timeseries/math_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/timeseries/python/timeseries/math_utils.py b/tensorflow/contrib/timeseries/python/timeseries/math_utils.py
index e65e3eab3d..c70da3e082 100644
--- a/tensorflow/contrib/timeseries/python/timeseries/math_utils.py
+++ b/tensorflow/contrib/timeseries/python/timeseries/math_utils.py
@@ -689,11 +689,11 @@ class InputStatisticsFromMiniBatch(object):
values = features[TrainEvalFeatures.VALUES]
else:
# times and values may not be available, for example during prediction. We
- # still need to retreive our variables so that they can be read from, even
+ # still need to retrieve our variables so that they can be read from, even
# if we're not going to update them.
times = None
values = None
- # Create/retreive variables representing input statistics, initialized
+ # Create/retrieve variables representing input statistics, initialized
# without data to avoid deadlocking if variables are initialized before
# queue runners are started.
with variable_scope.variable_scope("input_statistics", use_resource=True):