diff --git a/python/paddle/hapi/callbacks.py b/python/paddle/hapi/callbacks.py index ebb36623a42b25af43f13b7cfa09e6bbdeff44d2..8567a2fff7dafb653b2e9e371de168df7746bbcf 100644 --- a/python/paddle/hapi/callbacks.py +++ b/python/paddle/hapi/callbacks.py @@ -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)