From 8a044d2e2d607f183c173d8fb4d16c3db06b1418 Mon Sep 17 00:00:00 2001 From: stoneyang Date: Sun, 9 Oct 2016 10:27:12 +0800 Subject: [PATCH] typo in image classification demo (#167) --- demo/image_classification/vgg_16_cifar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 demo/image_classification/vgg_16_cifar.py diff --git a/demo/image_classification/vgg_16_cifar.py b/demo/image_classification/vgg_16_cifar.py old mode 100644 new mode 100755 index 238608c3cb..e8b8af4bd3 --- a/demo/image_classification/vgg_16_cifar.py +++ b/demo/image_classification/vgg_16_cifar.py @@ -44,7 +44,7 @@ data_size=3*32*32 label_size=10 img = data_layer(name='image', size=data_size) -# small_vgg is predined in trainer_config_helpers.network +# small_vgg is predefined in trainer_config_helpers.networks predict = small_vgg(input_image=img, num_channels=3, num_classes=label_size) -- GitLab