Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5abf7d

Browse files
committed
Fix small typo: python/training/moving_averages.py
Quick fix to typos in comments in tensorflow/python/training/moving_averages.py
1 parent a01dc35 commit a5abf7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tensorflow/python/training/moving_averages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class ExponentialMovingAverage(object):
111111
maintain_averages_op = ema.apply([var0, var1])
112112
113113
# Create an op that will update the moving averages after each training
114-
# step. This is what we will use in place of the usuall trainig op.
114+
# step. This is what we will use in place of the usual training op.
115115
with tf.control_dependencies([opt_op]):
116116
training_op = tf.group(maintain_averages_op)
117117

0 commit comments

Comments
 (0)