Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tornadomeet authored and wuwei committed Dec 30, 2015
1 parent f890b79 commit 3a66df2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/mxnet/callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ def __call__(self, param):
if param.eval_metric is not None:
name, value = param.eval_metric.get()
logging.info("Epoch[%d] Batch [%d]\tSpeed: %.2f samples/sec\tTrain-%s=%f",
param.epoch, count, speed, name, value)
param.epoch, count, speed, name, value)
else:
logging.info("Iter[%d] Batch [%d]\tSpeed: %.2f samples/sec",
param.epoch, count, speed)
param.epoch, count, speed)
self.tic = time.time()
else:
self.init = True
Expand Down

0 comments on commit 3a66df2

Please sign in to comment.