From 549c23ef82108e6a3308420c7701a5b204563229 Mon Sep 17 00:00:00 2001 From: Fan Yang Date: Sat, 8 Oct 2016 16:05:19 +0800 Subject: [PATCH] typo in image classification demo --- 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 238608c3cbede1..e8b8af4bd313d0 --- a/demo/image_classification/vgg_16_cifar.py +++ b/demo/image_classification/vgg_16_cifar.py @@ -44,7 +44,7 @@ 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)