chibi@1604:~/caffe$ cd python; python classify.py --raw_scale 255 ../101_ObjectCategories/panda/image_0013.jpg ../result.npy; cd .. I0310 18:58:14.695915 4799 gpu_memory.cpp:105] GPUMemory::Manager initialized I0310 18:58:14.696461 4799 gpu_memory.cpp:107] Total memory: 2081751040, Free: 1276116992, dev_info[0]: total=2081751040 free=1276116992 CPU mode W0310 18:58:14.696524 4799 _caffe.cpp:172] DEPRECATION WARNING - deprecated use of Python interface W0310 18:58:14.696578 4799 _caffe.cpp:173] Use this instead (with the named "weights" parameter): W0310 18:58:14.696584 4799 _caffe.cpp:175] Net('../models/bvlc_reference_caffenet/deploy.prototxt', 1, weights='../models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel') I0310 18:58:14.698431 4799 net.cpp:83] Initializing net from parameters: name: "CaffeNet" state { phase: TEST level: 0 } layer { name: "data" type: "Input" top: "data" input_param { shape { dim: 10 dim: 3 dim: 227 dim: 227 } } } layer { name: "conv1" type: "Convolution" bottom: "data" top: "conv1" convolution_param { num_output: 96 kernel_size: 11 stride: 4 } } layer { name: "relu1" type: "ReLU" bottom: "conv1" top: "conv1" } layer { name: "pool1" type: "Pooling" bottom: "conv1" top: "pool1" pooling_param { pool: MAX kernel_size: 3 stride: 2 } } layer { name: "norm1" type: "LRN" bottom: "pool1" top: "norm1" lrn_param { local_size: 5 alpha: 0.0001 beta: 0.75 } } layer { name: "conv2" type: "Convolution" bottom: "norm1" top: "conv2" convolution_param { num_output: 256 pad: 2 kernel_size: 5 group: 2 } } layer { name: "relu2" type: "ReLU" bottom: "conv2" top: "conv2" } layer { name: "pool2" type: "Pooling" bottom: "conv2" top: "pool2" pooling_param { pool: MAX kernel_size: 3 stride: 2 } } layer { name: "norm2" type: "LRN" bottom: "pool2" top: "norm2" lrn_param { local_size: 5 alpha: 0.0001 beta: 0.75 } } layer { name: "conv3" type: "Convolution" bottom: "norm2" top: "conv3" convolution_param { num_output: 384 pad: 1 kernel_size: 3 } } layer { name: "relu3" type: "ReLU" bottom: "conv3" top: "conv3" } layer { name: "conv4" type: "Convolution" bottom: "conv3" top: "conv4" convolution_param { num_output: 384 pad: 1 kernel_size: 3 group: 2 } } layer { name: "relu4" type: "ReLU" bottom: "conv4" top: "conv4" } layer { name: "conv5" type: "Convolution" bottom: "conv4" top: "conv5" convolution_param { num_output: 256 pad: 1 kernel_size: 3 group: 2 } } layer { name: "relu5" type: "ReLU" bottom: "conv5" top: "conv5" } layer { name: "pool5" type: "Pooling" bottom: "conv5" top: "pool5" pooling_param { pool: MAX kernel_size: 3 stride: 2 } } layer { name: "fc6" type: "InnerProduct" bottom: "pool5" top: "fc6" inner_product_param { num_output: 4096 } } layer { name: "relu6" type: "ReLU" bottom: "fc6" top: "fc6" } layer { name: "drop6" type: "Dropout" bottom: "fc6" top: "fc6" dropout_param { dropout_ratio: 0.5 } } layer { name: "fc7" type: "InnerProduct" bottom: "fc6" top: "fc7" inner_product_param { num_output: 4096 } } layer { name: "relu7" type: "ReLU" bottom: "fc7" top: "fc7" } layer { name: "drop7" type: "Dropout" bottom: "fc7" top: "fc7" dropout_param { dropout_ratio: 0.5 } } layer { name: "fc8" type: "InnerProduct" bottom: "fc7" top: "fc8" inner_product_param { num_output: 1000 } } layer { name: "prob" type: "Softmax" bottom: "fc8" top: "prob" } I0310 18:58:14.698571 4799 net.cpp:113] Using FLOAT as default forward math type I0310 18:58:14.698580 4799 net.cpp:119] Using FLOAT as default backward math type I0310 18:58:14.698585 4799 layer_factory.hpp:172] Creating layer 'data' of type 'Input' I0310 18:58:14.698591 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.698602 4799 net.cpp:202] Created Layer data (0) I0310 18:58:14.698608 4799 net.cpp:544] data -> data I0310 18:58:14.698623 4799 net.cpp:262] Setting up data I0310 18:58:14.698632 4799 net.cpp:269] TEST Top shape for layer 0 'data' 10 3 227 227 (1545870) I0310 18:58:14.698650 4799 layer_factory.hpp:172] Creating layer 'conv1' of type 'Convolution' I0310 18:58:14.698669 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.698685 4799 net.cpp:202] Created Layer conv1 (1) I0310 18:58:14.698691 4799 net.cpp:574] conv1 <- data I0310 18:58:14.698698 4799 net.cpp:544] conv1 -> conv1 I0310 18:58:14.699005 4799 net.cpp:262] Setting up conv1 I0310 18:58:14.699015 4799 net.cpp:269] TEST Top shape for layer 1 'conv1' 10 96 55 55 (2904000) I0310 18:58:14.699028 4799 layer_factory.hpp:172] Creating layer 'relu1' of type 'ReLU' I0310 18:58:14.699033 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.699041 4799 net.cpp:202] Created Layer relu1 (2) I0310 18:58:14.699045 4799 net.cpp:574] relu1 <- conv1 I0310 18:58:14.699050 4799 net.cpp:529] relu1 -> conv1 (in-place) I0310 18:58:14.699056 4799 net.cpp:262] Setting up relu1 I0310 18:58:14.699061 4799 net.cpp:269] TEST Top shape for layer 2 'relu1' 10 96 55 55 (2904000) I0310 18:58:14.699066 4799 layer_factory.hpp:172] Creating layer 'pool1' of type 'Pooling' I0310 18:58:14.699071 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.699079 4799 net.cpp:202] Created Layer pool1 (3) I0310 18:58:14.699084 4799 net.cpp:574] pool1 <- conv1 I0310 18:58:14.699087 4799 net.cpp:544] pool1 -> pool1 I0310 18:58:14.699098 4799 net.cpp:262] Setting up pool1 I0310 18:58:14.699105 4799 net.cpp:269] TEST Top shape for layer 3 'pool1' 10 96 27 27 (699840) I0310 18:58:14.699110 4799 layer_factory.hpp:172] Creating layer 'norm1' of type 'LRN' I0310 18:58:14.699115 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.699123 4799 net.cpp:202] Created Layer norm1 (4) I0310 18:58:14.699128 4799 net.cpp:574] norm1 <- pool1 I0310 18:58:14.699132 4799 net.cpp:544] norm1 -> norm1 I0310 18:58:14.699141 4799 net.cpp:262] Setting up norm1 I0310 18:58:14.699146 4799 net.cpp:269] TEST Top shape for layer 4 'norm1' 10 96 27 27 (699840) I0310 18:58:14.699151 4799 layer_factory.hpp:172] Creating layer 'conv2' of type 'Convolution' I0310 18:58:14.699156 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.699165 4799 net.cpp:202] Created Layer conv2 (5) I0310 18:58:14.699170 4799 net.cpp:574] conv2 <- norm1 I0310 18:58:14.699175 4799 net.cpp:544] conv2 -> conv2 I0310 18:58:14.701633 4799 net.cpp:262] Setting up conv2 I0310 18:58:14.701643 4799 net.cpp:269] TEST Top shape for layer 5 'conv2' 10 256 27 27 (1866240) I0310 18:58:14.701651 4799 layer_factory.hpp:172] Creating layer 'relu2' of type 'ReLU' I0310 18:58:14.701656 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.701664 4799 net.cpp:202] Created Layer relu2 (6) I0310 18:58:14.701669 4799 net.cpp:574] relu2 <- conv2 I0310 18:58:14.701674 4799 net.cpp:529] relu2 -> conv2 (in-place) I0310 18:58:14.701679 4799 net.cpp:262] Setting up relu2 I0310 18:58:14.701684 4799 net.cpp:269] TEST Top shape for layer 6 'relu2' 10 256 27 27 (1866240) I0310 18:58:14.701689 4799 layer_factory.hpp:172] Creating layer 'pool2' of type 'Pooling' I0310 18:58:14.701694 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.701701 4799 net.cpp:202] Created Layer pool2 (7) I0310 18:58:14.701705 4799 net.cpp:574] pool2 <- conv2 I0310 18:58:14.701711 4799 net.cpp:544] pool2 -> pool2 I0310 18:58:14.701719 4799 net.cpp:262] Setting up pool2 I0310 18:58:14.701725 4799 net.cpp:269] TEST Top shape for layer 7 'pool2' 10 256 13 13 (432640) I0310 18:58:14.701730 4799 layer_factory.hpp:172] Creating layer 'norm2' of type 'LRN' I0310 18:58:14.701733 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.701752 4799 net.cpp:202] Created Layer norm2 (8) I0310 18:58:14.701757 4799 net.cpp:574] norm2 <- pool2 I0310 18:58:14.701762 4799 net.cpp:544] norm2 -> norm2 I0310 18:58:14.701771 4799 net.cpp:262] Setting up norm2 I0310 18:58:14.701776 4799 net.cpp:269] TEST Top shape for layer 8 'norm2' 10 256 13 13 (432640) I0310 18:58:14.701781 4799 layer_factory.hpp:172] Creating layer 'conv3' of type 'Convolution' I0310 18:58:14.701786 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.701793 4799 net.cpp:202] Created Layer conv3 (9) I0310 18:58:14.701798 4799 net.cpp:574] conv3 <- norm2 I0310 18:58:14.701802 4799 net.cpp:544] conv3 -> conv3 I0310 18:58:14.708858 4799 net.cpp:262] Setting up conv3 I0310 18:58:14.708869 4799 net.cpp:269] TEST Top shape for layer 9 'conv3' 10 384 13 13 (648960) I0310 18:58:14.708878 4799 layer_factory.hpp:172] Creating layer 'relu3' of type 'ReLU' I0310 18:58:14.708884 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.708889 4799 net.cpp:202] Created Layer relu3 (10) I0310 18:58:14.708894 4799 net.cpp:574] relu3 <- conv3 I0310 18:58:14.708899 4799 net.cpp:529] relu3 -> conv3 (in-place) I0310 18:58:14.708904 4799 net.cpp:262] Setting up relu3 I0310 18:58:14.708909 4799 net.cpp:269] TEST Top shape for layer 10 'relu3' 10 384 13 13 (648960) I0310 18:58:14.708914 4799 layer_factory.hpp:172] Creating layer 'conv4' of type 'Convolution' I0310 18:58:14.708919 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.708930 4799 net.cpp:202] Created Layer conv4 (11) I0310 18:58:14.708933 4799 net.cpp:574] conv4 <- conv3 I0310 18:58:14.708938 4799 net.cpp:544] conv4 -> conv4 I0310 18:58:14.714232 4799 net.cpp:262] Setting up conv4 I0310 18:58:14.714242 4799 net.cpp:269] TEST Top shape for layer 11 'conv4' 10 384 13 13 (648960) I0310 18:58:14.714251 4799 layer_factory.hpp:172] Creating layer 'relu4' of type 'ReLU' I0310 18:58:14.714256 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.714260 4799 net.cpp:202] Created Layer relu4 (12) I0310 18:58:14.714265 4799 net.cpp:574] relu4 <- conv4 I0310 18:58:14.714269 4799 net.cpp:529] relu4 -> conv4 (in-place) I0310 18:58:14.714275 4799 net.cpp:262] Setting up relu4 I0310 18:58:14.714280 4799 net.cpp:269] TEST Top shape for layer 12 'relu4' 10 384 13 13 (648960) I0310 18:58:14.714284 4799 layer_factory.hpp:172] Creating layer 'conv5' of type 'Convolution' I0310 18:58:14.714289 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.714299 4799 net.cpp:202] Created Layer conv5 (13) I0310 18:58:14.714304 4799 net.cpp:574] conv5 <- conv4 I0310 18:58:14.714309 4799 net.cpp:544] conv5 -> conv5 I0310 18:58:14.717842 4799 net.cpp:262] Setting up conv5 I0310 18:58:14.717852 4799 net.cpp:269] TEST Top shape for layer 13 'conv5' 10 256 13 13 (432640) I0310 18:58:14.717862 4799 layer_factory.hpp:172] Creating layer 'relu5' of type 'ReLU' I0310 18:58:14.717867 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.717873 4799 net.cpp:202] Created Layer relu5 (14) I0310 18:58:14.717877 4799 net.cpp:574] relu5 <- conv5 I0310 18:58:14.717882 4799 net.cpp:529] relu5 -> conv5 (in-place) I0310 18:58:14.717887 4799 net.cpp:262] Setting up relu5 I0310 18:58:14.717892 4799 net.cpp:269] TEST Top shape for layer 14 'relu5' 10 256 13 13 (432640) I0310 18:58:14.717897 4799 layer_factory.hpp:172] Creating layer 'pool5' of type 'Pooling' I0310 18:58:14.717901 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.717909 4799 net.cpp:202] Created Layer pool5 (15) I0310 18:58:14.717914 4799 net.cpp:574] pool5 <- conv5 I0310 18:58:14.717918 4799 net.cpp:544] pool5 -> pool5 I0310 18:58:14.717926 4799 net.cpp:262] Setting up pool5 I0310 18:58:14.717932 4799 net.cpp:269] TEST Top shape for layer 15 'pool5' 10 256 6 6 (92160) I0310 18:58:14.717949 4799 layer_factory.hpp:172] Creating layer 'fc6' of type 'InnerProduct' I0310 18:58:14.717954 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:14.717964 4799 net.cpp:202] Created Layer fc6 (16) I0310 18:58:14.717970 4799 net.cpp:574] fc6 <- pool5 I0310 18:58:14.717975 4799 net.cpp:544] fc6 -> fc6 I0310 18:58:15.018082 4799 net.cpp:262] Setting up fc6 I0310 18:58:15.018110 4799 net.cpp:269] TEST Top shape for layer 16 'fc6' 10 4096 (40960) I0310 18:58:15.018121 4799 layer_factory.hpp:172] Creating layer 'relu6' of type 'ReLU' I0310 18:58:15.018126 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.018134 4799 net.cpp:202] Created Layer relu6 (17) I0310 18:58:15.018141 4799 net.cpp:574] relu6 <- fc6 I0310 18:58:15.018148 4799 net.cpp:529] relu6 -> fc6 (in-place) I0310 18:58:15.018155 4799 net.cpp:262] Setting up relu6 I0310 18:58:15.018160 4799 net.cpp:269] TEST Top shape for layer 17 'relu6' 10 4096 (40960) I0310 18:58:15.018164 4799 layer_factory.hpp:172] Creating layer 'drop6' of type 'Dropout' I0310 18:58:15.018169 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.018178 4799 net.cpp:202] Created Layer drop6 (18) I0310 18:58:15.018183 4799 net.cpp:574] drop6 <- fc6 I0310 18:58:15.018187 4799 net.cpp:529] drop6 -> fc6 (in-place) I0310 18:58:15.018193 4799 net.cpp:262] Setting up drop6 I0310 18:58:15.018198 4799 net.cpp:269] TEST Top shape for layer 18 'drop6' 10 4096 (40960) I0310 18:58:15.018203 4799 layer_factory.hpp:172] Creating layer 'fc7' of type 'InnerProduct' I0310 18:58:15.018208 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.018214 4799 net.cpp:202] Created Layer fc7 (19) I0310 18:58:15.018218 4799 net.cpp:574] fc7 <- fc6 I0310 18:58:15.018224 4799 net.cpp:544] fc7 -> fc7 I0310 18:58:15.151417 4799 net.cpp:262] Setting up fc7 I0310 18:58:15.151441 4799 net.cpp:269] TEST Top shape for layer 19 'fc7' 10 4096 (40960) I0310 18:58:15.151451 4799 layer_factory.hpp:172] Creating layer 'relu7' of type 'ReLU' I0310 18:58:15.151458 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.151468 4799 net.cpp:202] Created Layer relu7 (20) I0310 18:58:15.151473 4799 net.cpp:574] relu7 <- fc7 I0310 18:58:15.151480 4799 net.cpp:529] relu7 -> fc7 (in-place) I0310 18:58:15.151486 4799 net.cpp:262] Setting up relu7 I0310 18:58:15.151491 4799 net.cpp:269] TEST Top shape for layer 20 'relu7' 10 4096 (40960) I0310 18:58:15.151495 4799 layer_factory.hpp:172] Creating layer 'drop7' of type 'Dropout' I0310 18:58:15.151500 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.151507 4799 net.cpp:202] Created Layer drop7 (21) I0310 18:58:15.151511 4799 net.cpp:574] drop7 <- fc7 I0310 18:58:15.151515 4799 net.cpp:529] drop7 -> fc7 (in-place) I0310 18:58:15.151521 4799 net.cpp:262] Setting up drop7 I0310 18:58:15.151525 4799 net.cpp:269] TEST Top shape for layer 21 'drop7' 10 4096 (40960) I0310 18:58:15.151530 4799 layer_factory.hpp:172] Creating layer 'fc8' of type 'InnerProduct' I0310 18:58:15.151535 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.151542 4799 net.cpp:202] Created Layer fc8 (22) I0310 18:58:15.151546 4799 net.cpp:574] fc8 <- fc7 I0310 18:58:15.151551 4799 net.cpp:544] fc8 -> fc8 I0310 18:58:15.182348 4799 net.cpp:262] Setting up fc8 I0310 18:58:15.182359 4799 net.cpp:269] TEST Top shape for layer 22 'fc8' 10 1000 (10000) I0310 18:58:15.182377 4799 layer_factory.hpp:172] Creating layer 'prob' of type 'Softmax' I0310 18:58:15.182384 4799 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0310 18:58:15.182394 4799 net.cpp:202] Created Layer prob (23) I0310 18:58:15.182421 4799 net.cpp:574] prob <- fc8 I0310 18:58:15.182427 4799 net.cpp:544] prob -> prob I0310 18:58:15.182438 4799 net.cpp:262] Setting up prob I0310 18:58:15.182444 4799 net.cpp:269] TEST Top shape for layer 23 'prob' 10 1000 (10000) I0310 18:58:15.182449 4799 net.cpp:340] prob does not need backward computation. I0310 18:58:15.182454 4799 net.cpp:340] fc8 does not need backward computation. I0310 18:58:15.182458 4799 net.cpp:340] drop7 does not need backward computation. I0310 18:58:15.182462 4799 net.cpp:340] relu7 does not need backward computation. I0310 18:58:15.182466 4799 net.cpp:340] fc7 does not need backward computation. I0310 18:58:15.182471 4799 net.cpp:340] drop6 does not need backward computation. I0310 18:58:15.182476 4799 net.cpp:340] relu6 does not need backward computation. I0310 18:58:15.182479 4799 net.cpp:340] fc6 does not need backward computation. I0310 18:58:15.182483 4799 net.cpp:340] pool5 does not need backward computation. I0310 18:58:15.182487 4799 net.cpp:340] relu5 does not need backward computation. I0310 18:58:15.182492 4799 net.cpp:340] conv5 does not need backward computation. I0310 18:58:15.182497 4799 net.cpp:340] relu4 does not need backward computation. I0310 18:58:15.182500 4799 net.cpp:340] conv4 does not need backward computation. I0310 18:58:15.182505 4799 net.cpp:340] relu3 does not need backward computation. I0310 18:58:15.182509 4799 net.cpp:340] conv3 does not need backward computation. I0310 18:58:15.182513 4799 net.cpp:340] norm2 does not need backward computation. I0310 18:58:15.182518 4799 net.cpp:340] pool2 does not need backward computation. I0310 18:58:15.182523 4799 net.cpp:340] relu2 does not need backward computation. I0310 18:58:15.182526 4799 net.cpp:340] conv2 does not need backward computation. I0310 18:58:15.182530 4799 net.cpp:340] norm1 does not need backward computation. I0310 18:58:15.182534 4799 net.cpp:340] pool1 does not need backward computation. I0310 18:58:15.182539 4799 net.cpp:340] relu1 does not need backward computation. I0310 18:58:15.182544 4799 net.cpp:340] conv1 does not need backward computation. I0310 18:58:15.182549 4799 net.cpp:340] data does not need backward computation. I0310 18:58:15.182552 4799 net.cpp:382] This network produces output prob I0310 18:58:15.182570 4799 net.cpp:405] Top memory (TEST) required for data: 68681400 diff: 68681400 I0310 18:58:15.182575 4799 net.cpp:408] Bottom memory (TEST) required for data: 68641400 diff: 68641400 I0310 18:58:15.182579 4799 net.cpp:411] Shared (in-place) memory (TEST) by data: 26658560 diff: 26658560 I0310 18:58:15.182584 4799 net.cpp:414] Parameters memory (TEST) required for data: 243860896 diff: 243860896 I0310 18:58:15.182587 4799 net.cpp:417] Parameters shared memory (TEST) by data: 0 diff: 0 I0310 18:58:15.182590 4799 net.cpp:423] Network initialization done. I0310 18:58:15.313426 4799 upgrade_proto.cpp:43] Attempting to upgrade input file specified using deprecated transformation parameters: ../models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel I0310 18:58:15.313453 4799 upgrade_proto.cpp:46] Successfully upgraded file specified using deprecated data transformation parameters. W0310 18:58:15.313458 4799 upgrade_proto.cpp:48] Note that future Caffe releases will only support transform_param messages for transformation fields. I0310 18:58:15.313472 4799 upgrade_proto.cpp:52] Attempting to upgrade input file specified using deprecated V1LayerParameter: ../models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel I0310 18:58:15.541015 4799 upgrade_proto.cpp:60] Successfully upgraded file specified using deprecated V1LayerParameter I0310 18:58:15.546795 4799 net.cpp:1141] Copying source layer data Type:Data #blobs=0 I0310 18:58:15.546805 4799 net.cpp:1141] Copying source layer conv1 Type:Convolution #blobs=2 I0310 18:58:15.547148 4799 net.cpp:1141] Copying source layer relu1 Type:ReLU #blobs=0 I0310 18:58:15.547154 4799 net.cpp:1141] Copying source layer pool1 Type:Pooling #blobs=0 I0310 18:58:15.547175 4799 net.cpp:1141] Copying source layer norm1 Type:LRN #blobs=0 I0310 18:58:15.547183 4799 net.cpp:1141] Copying source layer conv2 Type:Convolution #blobs=2 I0310 18:58:15.549875 4799 net.cpp:1141] Copying source layer relu2 Type:ReLU #blobs=0 I0310 18:58:15.549881 4799 net.cpp:1141] Copying source layer pool2 Type:Pooling #blobs=0 I0310 18:58:15.549885 4799 net.cpp:1141] Copying source layer norm2 Type:LRN #blobs=0 I0310 18:58:15.549886 4799 net.cpp:1141] Copying source layer conv3 Type:Convolution #blobs=2 I0310 18:58:15.557616 4799 net.cpp:1141] Copying source layer relu3 Type:ReLU #blobs=0 I0310 18:58:15.557623 4799 net.cpp:1141] Copying source layer conv4 Type:Convolution #blobs=2 I0310 18:58:15.563470 4799 net.cpp:1141] Copying source layer relu4 Type:ReLU #blobs=0 I0310 18:58:15.563477 4799 net.cpp:1141] Copying source layer conv5 Type:Convolution #blobs=2 I0310 18:58:15.567350 4799 net.cpp:1141] Copying source layer relu5 Type:ReLU #blobs=0 I0310 18:58:15.567356 4799 net.cpp:1141] Copying source layer pool5 Type:Pooling #blobs=0 I0310 18:58:15.567359 4799 net.cpp:1141] Copying source layer fc6 Type:InnerProduct #blobs=2 I0310 18:58:15.893383 4799 net.cpp:1141] Copying source layer relu6 Type:ReLU #blobs=0 I0310 18:58:15.893401 4799 net.cpp:1141] Copying source layer drop6 Type:Dropout #blobs=0 I0310 18:58:15.893404 4799 net.cpp:1141] Copying source layer fc7 Type:InnerProduct #blobs=2 I0310 18:58:16.038354 4799 net.cpp:1141] Copying source layer relu7 Type:ReLU #blobs=0 I0310 18:58:16.038373 4799 net.cpp:1141] Copying source layer drop7 Type:Dropout #blobs=0 I0310 18:58:16.038377 4799 net.cpp:1141] Copying source layer fc8 Type:InnerProduct #blobs=2 I0310 18:58:16.073792 4799 net.cpp:1133] Ignoring source layer loss (10, 3, 227, 227) Loading file: ../101_ObjectCategories/panda/image_0013.jpg Classifying 1 inputs. Done in 0.48 s. Saving results into ../result.npy chibi@1604:~/caffe$ python show_result.py data/ilsvrc12/synset_words.txt result.npy #1 | n02510455 giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca | 99.9% #2 | n02500267 indri, indris, Indri indri, Indri brevicaudatus | 0.0% #3 | n02447366 badger | 0.0% chibi@1604:~/caffe$