fix typo in ProgBarLogger (#29329)

revert-31562-mean
LielinJiang 5 years ago committed by GitHub
parent 8358791607
commit f31e5adab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -362,7 +362,7 @@ class ProgBarLogger(Callback):
}
if self._is_print():
print(
"The loss value printed in the log is the current batch, and the metric is the average value of previous step."
"The loss value printed in the log is the current step, and the metric is the average value of previous step."
)
def on_epoch_begin(self, epoch=None, logs=None):
@ -395,7 +395,7 @@ class ProgBarLogger(Callback):
('avg_batch_cost', "%.5f sec" % (timer['batch_time'] / cnt)))
values.append(
('ips', "%.5f samples/sec" %
(samples / (timer['batch_time'] + timer['batch_time']))))
(samples / (timer['data_time'] + timer['batch_time']))))
progbar.update(steps, values)

Loading…
Cancel
Save