From ceabcaac77543d99246415b2fb2d8c973a830453 Mon Sep 17 00:00:00 2001 From: Shufan <33112206+juliusshufan@users.noreply.github.com> Date: Thu, 13 Sep 2018 01:59:54 +0800 Subject: [PATCH] Removing the re-size for validation data, which breaking the validation accuracy of CIFAR training (#12362) --- example/image-classification/common/data.py | 1 - 1 file changed, 1 deletion(-) diff --git a/example/image-classification/common/data.py b/example/image-classification/common/data.py index df1449b6365f..78385a7b7e40 100755 --- a/example/image-classification/common/data.py +++ b/example/image-classification/common/data.py @@ -194,7 +194,6 @@ def get_rec_iter(args, kv=None): std_r = rgb_std[0], std_g = rgb_std[1], std_b = rgb_std[2], - resize = 256, data_name = 'data', label_name = 'softmax_label', batch_size = args.batch_size,