未验证 提交 009e5b8e 编写于 作者: L LielinJiang 提交者: GitHub

fix typo in ProgBarLogger (#29329) (#29351)

上级 981244cf
......@@ -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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册