From a7fb45f650e0d32ba697b5818aa4799c2ccc9b05 Mon Sep 17 00:00:00 2001 From: hysunflower <52739577+hysunflower@users.noreply.github.com> Date: Mon, 27 Jul 2020 18:56:43 +0800 Subject: [PATCH] update the key word of mobilenet log (#4766) --- dygraph/mobilenet/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph/mobilenet/train.py b/dygraph/mobilenet/train.py index 34ece762..debd22ab 100644 --- a/dygraph/mobilenet/train.py +++ b/dygraph/mobilenet/train.py @@ -67,7 +67,7 @@ def eval(net, test_data_loader, eop): test_batch_cost = time.time() - batch_start total_sample += 1 print( - "test | epoch %d, avg_loss %.5f, acc_top1 %.5f, acc_top5 %.5f, batch_cost: %.5f s, reader_cost: %.5f s" + "test | epoch %d, avg_loss %.5f, acc_top1 %.5f, acc_top5 %.5f, batch_cost_time: %.5f s, reader_cost: %.5f s" % (eop, avg_loss.numpy(), acc_top1.numpy(), acc_top5.numpy(), test_batch_cost, batch_reader_end - batch_start)) sys.stdout.flush() -- GitLab