chibi@1604:~/caffe$ cd python; python classify.py --raw_scale 255 ../101_ObjectCategories/dolphin/image_0045.jpg ../result.npy; cd .. I0311 19:02:19.215910 5727 gpu_memory.cpp:105] GPUMemory::Manager initialized I0311 19:02:19.217319 5727 gpu_memory.cpp:107] Total memory: 25364004864, Free: 24854396928, dev_info[0]: total=25364004864 free=24854396928 CPU mode W0311 19:02:19.217377 5727 _caffe.cpp:172] DEPRECATION WARNING - deprecated use of Python interface W0311 19:02:19.217432 5727 _caffe.cpp:173] Use this instead (with the named "weights" parameter): W0311 19:02:19.217438 5727 _caffe.cpp:175] Net('../models/bvlc_reference_caffenet/deploy.prototxt', 1, weights='../models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel') I0311 19:02:19.219285 5727 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" } I0311 19:02:19.219415 5727 net.cpp:113] Using FLOAT as default forward math type I0311 19:02:19.219424 5727 net.cpp:119] Using FLOAT as default backward math type I0311 19:02:19.219429 5727 layer_factory.hpp:172] Creating layer 'data' of type 'Input' I0311 19:02:19.219436 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.219444 5727 net.cpp:202] Created Layer data (0) I0311 19:02:19.219452 5727 net.cpp:544] data -> data I0311 19:02:19.219473 5727 net.cpp:262] Setting up data I0311 19:02:19.219481 5727 net.cpp:269] TEST Top shape for layer 0 'data' 10 3 227 227 (1545870) I0311 19:02:19.219499 5727 layer_factory.hpp:172] Creating layer 'conv1' of type 'Convolution' I0311 19:02:19.219506 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.219521 5727 net.cpp:202] Created Layer conv1 (1) I0311 19:02:19.219527 5727 net.cpp:574] conv1 <- data I0311 19:02:19.219532 5727 net.cpp:544] conv1 -> conv1 I0311 19:02:19.219856 5727 net.cpp:262] Setting up conv1 I0311 19:02:19.219864 5727 net.cpp:269] TEST Top shape for layer 1 'conv1' 10 96 55 55 (2904000) I0311 19:02:19.219877 5727 layer_factory.hpp:172] Creating layer 'relu1' of type 'ReLU' I0311 19:02:19.219882 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.219889 5727 net.cpp:202] Created Layer relu1 (2) I0311 19:02:19.219894 5727 net.cpp:574] relu1 <- conv1 I0311 19:02:19.219900 5727 net.cpp:529] relu1 -> conv1 (in-place) I0311 19:02:19.219907 5727 net.cpp:262] Setting up relu1 I0311 19:02:19.219911 5727 net.cpp:269] TEST Top shape for layer 2 'relu1' 10 96 55 55 (2904000) I0311 19:02:19.219918 5727 layer_factory.hpp:172] Creating layer 'pool1' of type 'Pooling' I0311 19:02:19.219921 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.219929 5727 net.cpp:202] Created Layer pool1 (3) I0311 19:02:19.219934 5727 net.cpp:574] pool1 <- conv1 I0311 19:02:19.219939 5727 net.cpp:544] pool1 -> pool1 I0311 19:02:19.219950 5727 net.cpp:262] Setting up pool1 I0311 19:02:19.219957 5727 net.cpp:269] TEST Top shape for layer 3 'pool1' 10 96 27 27 (699840) I0311 19:02:19.219962 5727 layer_factory.hpp:172] Creating layer 'norm1' of type 'LRN' I0311 19:02:19.219966 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.219975 5727 net.cpp:202] Created Layer norm1 (4) I0311 19:02:19.219980 5727 net.cpp:574] norm1 <- pool1 I0311 19:02:19.219985 5727 net.cpp:544] norm1 -> norm1 I0311 19:02:19.219995 5727 net.cpp:262] Setting up norm1 I0311 19:02:19.220001 5727 net.cpp:269] TEST Top shape for layer 4 'norm1' 10 96 27 27 (699840) I0311 19:02:19.220005 5727 layer_factory.hpp:172] Creating layer 'conv2' of type 'Convolution' I0311 19:02:19.220010 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.220019 5727 net.cpp:202] Created Layer conv2 (5) I0311 19:02:19.220023 5727 net.cpp:574] conv2 <- norm1 I0311 19:02:19.220028 5727 net.cpp:544] conv2 -> conv2 I0311 19:02:19.222492 5727 net.cpp:262] Setting up conv2 I0311 19:02:19.222502 5727 net.cpp:269] TEST Top shape for layer 5 'conv2' 10 256 27 27 (1866240) I0311 19:02:19.222512 5727 layer_factory.hpp:172] Creating layer 'relu2' of type 'ReLU' I0311 19:02:19.222517 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.222524 5727 net.cpp:202] Created Layer relu2 (6) I0311 19:02:19.222529 5727 net.cpp:574] relu2 <- conv2 I0311 19:02:19.222534 5727 net.cpp:529] relu2 -> conv2 (in-place) I0311 19:02:19.222539 5727 net.cpp:262] Setting up relu2 I0311 19:02:19.222545 5727 net.cpp:269] TEST Top shape for layer 6 'relu2' 10 256 27 27 (1866240) I0311 19:02:19.222550 5727 layer_factory.hpp:172] Creating layer 'pool2' of type 'Pooling' I0311 19:02:19.222554 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.222561 5727 net.cpp:202] Created Layer pool2 (7) I0311 19:02:19.222565 5727 net.cpp:574] pool2 <- conv2 I0311 19:02:19.222570 5727 net.cpp:544] pool2 -> pool2 I0311 19:02:19.222578 5727 net.cpp:262] Setting up pool2 I0311 19:02:19.222582 5727 net.cpp:269] TEST Top shape for layer 7 'pool2' 10 256 13 13 (432640) I0311 19:02:19.222587 5727 layer_factory.hpp:172] Creating layer 'norm2' of type 'LRN' I0311 19:02:19.222591 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.222609 5727 net.cpp:202] Created Layer norm2 (8) I0311 19:02:19.222615 5727 net.cpp:574] norm2 <- pool2 I0311 19:02:19.222620 5727 net.cpp:544] norm2 -> norm2 I0311 19:02:19.222626 5727 net.cpp:262] Setting up norm2 I0311 19:02:19.222632 5727 net.cpp:269] TEST Top shape for layer 8 'norm2' 10 256 13 13 (432640) I0311 19:02:19.222636 5727 layer_factory.hpp:172] Creating layer 'conv3' of type 'Convolution' I0311 19:02:19.222641 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.222651 5727 net.cpp:202] Created Layer conv3 (9) I0311 19:02:19.222656 5727 net.cpp:574] conv3 <- norm2 I0311 19:02:19.222659 5727 net.cpp:544] conv3 -> conv3 I0311 19:02:19.229709 5727 net.cpp:262] Setting up conv3 I0311 19:02:19.229718 5727 net.cpp:269] TEST Top shape for layer 9 'conv3' 10 384 13 13 (648960) I0311 19:02:19.229728 5727 layer_factory.hpp:172] Creating layer 'relu3' of type 'ReLU' I0311 19:02:19.229733 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.229739 5727 net.cpp:202] Created Layer relu3 (10) I0311 19:02:19.229744 5727 net.cpp:574] relu3 <- conv3 I0311 19:02:19.229748 5727 net.cpp:529] relu3 -> conv3 (in-place) I0311 19:02:19.229754 5727 net.cpp:262] Setting up relu3 I0311 19:02:19.229759 5727 net.cpp:269] TEST Top shape for layer 10 'relu3' 10 384 13 13 (648960) I0311 19:02:19.229764 5727 layer_factory.hpp:172] Creating layer 'conv4' of type 'Convolution' I0311 19:02:19.229768 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.229779 5727 net.cpp:202] Created Layer conv4 (11) I0311 19:02:19.229784 5727 net.cpp:574] conv4 <- conv3 I0311 19:02:19.229789 5727 net.cpp:544] conv4 -> conv4 I0311 19:02:19.235076 5727 net.cpp:262] Setting up conv4 I0311 19:02:19.235086 5727 net.cpp:269] TEST Top shape for layer 11 'conv4' 10 384 13 13 (648960) I0311 19:02:19.235092 5727 layer_factory.hpp:172] Creating layer 'relu4' of type 'ReLU' I0311 19:02:19.235096 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.235101 5727 net.cpp:202] Created Layer relu4 (12) I0311 19:02:19.235105 5727 net.cpp:574] relu4 <- conv4 I0311 19:02:19.235110 5727 net.cpp:529] relu4 -> conv4 (in-place) I0311 19:02:19.235116 5727 net.cpp:262] Setting up relu4 I0311 19:02:19.235121 5727 net.cpp:269] TEST Top shape for layer 12 'relu4' 10 384 13 13 (648960) I0311 19:02:19.235126 5727 layer_factory.hpp:172] Creating layer 'conv5' of type 'Convolution' I0311 19:02:19.235131 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.235143 5727 net.cpp:202] Created Layer conv5 (13) I0311 19:02:19.235148 5727 net.cpp:574] conv5 <- conv4 I0311 19:02:19.235152 5727 net.cpp:544] conv5 -> conv5 I0311 19:02:19.238687 5727 net.cpp:262] Setting up conv5 I0311 19:02:19.238695 5727 net.cpp:269] TEST Top shape for layer 13 'conv5' 10 256 13 13 (432640) I0311 19:02:19.238706 5727 layer_factory.hpp:172] Creating layer 'relu5' of type 'ReLU' I0311 19:02:19.238711 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.238718 5727 net.cpp:202] Created Layer relu5 (14) I0311 19:02:19.238723 5727 net.cpp:574] relu5 <- conv5 I0311 19:02:19.238729 5727 net.cpp:529] relu5 -> conv5 (in-place) I0311 19:02:19.238734 5727 net.cpp:262] Setting up relu5 I0311 19:02:19.238739 5727 net.cpp:269] TEST Top shape for layer 14 'relu5' 10 256 13 13 (432640) I0311 19:02:19.238744 5727 layer_factory.hpp:172] Creating layer 'pool5' of type 'Pooling' I0311 19:02:19.238747 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.238755 5727 net.cpp:202] Created Layer pool5 (15) I0311 19:02:19.238760 5727 net.cpp:574] pool5 <- conv5 I0311 19:02:19.238765 5727 net.cpp:544] pool5 -> pool5 I0311 19:02:19.238773 5727 net.cpp:262] Setting up pool5 I0311 19:02:19.238780 5727 net.cpp:269] TEST Top shape for layer 15 'pool5' 10 256 6 6 (92160) I0311 19:02:19.238792 5727 layer_factory.hpp:172] Creating layer 'fc6' of type 'InnerProduct' I0311 19:02:19.238797 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.238808 5727 net.cpp:202] Created Layer fc6 (16) I0311 19:02:19.238813 5727 net.cpp:574] fc6 <- pool5 I0311 19:02:19.238817 5727 net.cpp:544] fc6 -> fc6 I0311 19:02:19.539222 5727 net.cpp:262] Setting up fc6 I0311 19:02:19.539248 5727 net.cpp:269] TEST Top shape for layer 16 'fc6' 10 4096 (40960) I0311 19:02:19.539259 5727 layer_factory.hpp:172] Creating layer 'relu6' of type 'ReLU' I0311 19:02:19.539266 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.539276 5727 net.cpp:202] Created Layer relu6 (17) I0311 19:02:19.539281 5727 net.cpp:574] relu6 <- fc6 I0311 19:02:19.539288 5727 net.cpp:529] relu6 -> fc6 (in-place) I0311 19:02:19.539294 5727 net.cpp:262] Setting up relu6 I0311 19:02:19.539299 5727 net.cpp:269] TEST Top shape for layer 17 'relu6' 10 4096 (40960) I0311 19:02:19.539304 5727 layer_factory.hpp:172] Creating layer 'drop6' of type 'Dropout' I0311 19:02:19.539309 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.539319 5727 net.cpp:202] Created Layer drop6 (18) I0311 19:02:19.539322 5727 net.cpp:574] drop6 <- fc6 I0311 19:02:19.539328 5727 net.cpp:529] drop6 -> fc6 (in-place) I0311 19:02:19.539338 5727 net.cpp:262] Setting up drop6 I0311 19:02:19.539343 5727 net.cpp:269] TEST Top shape for layer 18 'drop6' 10 4096 (40960) I0311 19:02:19.539348 5727 layer_factory.hpp:172] Creating layer 'fc7' of type 'InnerProduct' I0311 19:02:19.539353 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.539360 5727 net.cpp:202] Created Layer fc7 (19) I0311 19:02:19.539364 5727 net.cpp:574] fc7 <- fc6 I0311 19:02:19.539368 5727 net.cpp:544] fc7 -> fc7 I0311 19:02:19.672641 5727 net.cpp:262] Setting up fc7 I0311 19:02:19.672664 5727 net.cpp:269] TEST Top shape for layer 19 'fc7' 10 4096 (40960) I0311 19:02:19.672674 5727 layer_factory.hpp:172] Creating layer 'relu7' of type 'ReLU' I0311 19:02:19.672679 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.672691 5727 net.cpp:202] Created Layer relu7 (20) I0311 19:02:19.672698 5727 net.cpp:574] relu7 <- fc7 I0311 19:02:19.672703 5727 net.cpp:529] relu7 -> fc7 (in-place) I0311 19:02:19.672710 5727 net.cpp:262] Setting up relu7 I0311 19:02:19.672715 5727 net.cpp:269] TEST Top shape for layer 20 'relu7' 10 4096 (40960) I0311 19:02:19.672719 5727 layer_factory.hpp:172] Creating layer 'drop7' of type 'Dropout' I0311 19:02:19.672724 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.672732 5727 net.cpp:202] Created Layer drop7 (21) I0311 19:02:19.672739 5727 net.cpp:574] drop7 <- fc7 I0311 19:02:19.672742 5727 net.cpp:529] drop7 -> fc7 (in-place) I0311 19:02:19.672755 5727 net.cpp:262] Setting up drop7 I0311 19:02:19.672760 5727 net.cpp:269] TEST Top shape for layer 21 'drop7' 10 4096 (40960) I0311 19:02:19.672765 5727 layer_factory.hpp:172] Creating layer 'fc8' of type 'InnerProduct' I0311 19:02:19.672770 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.672777 5727 net.cpp:202] Created Layer fc8 (22) I0311 19:02:19.672782 5727 net.cpp:574] fc8 <- fc7 I0311 19:02:19.672786 5727 net.cpp:544] fc8 -> fc8 I0311 19:02:19.705550 5727 net.cpp:262] Setting up fc8 I0311 19:02:19.705566 5727 net.cpp:269] TEST Top shape for layer 22 'fc8' 10 1000 (10000) I0311 19:02:19.705576 5727 layer_factory.hpp:172] Creating layer 'prob' of type 'Softmax' I0311 19:02:19.705582 5727 layer_factory.hpp:184] Layer's types are Ftype:FLOAT Btype:FLOAT Fmath:FLOAT Bmath:FLOAT I0311 19:02:19.705595 5727 net.cpp:202] Created Layer prob (23) I0311 19:02:19.705622 5727 net.cpp:574] prob <- fc8 I0311 19:02:19.705629 5727 net.cpp:544] prob -> prob I0311 19:02:19.705643 5727 net.cpp:262] Setting up prob I0311 19:02:19.705649 5727 net.cpp:269] TEST Top shape for layer 23 'prob' 10 1000 (10000) I0311 19:02:19.705654 5727 net.cpp:340] prob does not need backward computation. I0311 19:02:19.705659 5727 net.cpp:340] fc8 does not need backward computation. I0311 19:02:19.705664 5727 net.cpp:340] drop7 does not need backward computation. I0311 19:02:19.705668 5727 net.cpp:340] relu7 does not need backward computation. I0311 19:02:19.705673 5727 net.cpp:340] fc7 does not need backward computation. I0311 19:02:19.705677 5727 net.cpp:340] drop6 does not need backward computation. I0311 19:02:19.705682 5727 net.cpp:340] relu6 does not need backward computation. I0311 19:02:19.705687 5727 net.cpp:340] fc6 does not need backward computation. I0311 19:02:19.705691 5727 net.cpp:340] pool5 does not need backward computation. I0311 19:02:19.705696 5727 net.cpp:340] relu5 does not need backward computation. I0311 19:02:19.705701 5727 net.cpp:340] conv5 does not need backward computation. I0311 19:02:19.705705 5727 net.cpp:340] relu4 does not need backward computation. I0311 19:02:19.705710 5727 net.cpp:340] conv4 does not need backward computation. I0311 19:02:19.705715 5727 net.cpp:340] relu3 does not need backward computation. I0311 19:02:19.705720 5727 net.cpp:340] conv3 does not need backward computation. I0311 19:02:19.705725 5727 net.cpp:340] norm2 does not need backward computation. I0311 19:02:19.705730 5727 net.cpp:340] pool2 does not need backward computation. I0311 19:02:19.705734 5727 net.cpp:340] relu2 does not need backward computation. I0311 19:02:19.705739 5727 net.cpp:340] conv2 does not need backward computation. I0311 19:02:19.705744 5727 net.cpp:340] norm1 does not need backward computation. I0311 19:02:19.705749 5727 net.cpp:340] pool1 does not need backward computation. I0311 19:02:19.705754 5727 net.cpp:340] relu1 does not need backward computation. I0311 19:02:19.705759 5727 net.cpp:340] conv1 does not need backward computation. I0311 19:02:19.705762 5727 net.cpp:340] data does not need backward computation. I0311 19:02:19.705766 5727 net.cpp:382] This network produces output prob I0311 19:02:19.705785 5727 net.cpp:405] Top memory (TEST) required for data: 68681400 diff: 68681400 I0311 19:02:19.705791 5727 net.cpp:408] Bottom memory (TEST) required for data: 68641400 diff: 68641400 I0311 19:02:19.705796 5727 net.cpp:411] Shared (in-place) memory (TEST) by data: 26658560 diff: 26658560 I0311 19:02:19.705799 5727 net.cpp:414] Parameters memory (TEST) required for data: 243860896 diff: 243860896 I0311 19:02:19.705803 5727 net.cpp:417] Parameters shared memory (TEST) by data: 0 diff: 0 I0311 19:02:19.705808 5727 net.cpp:423] Network initialization done. I0311 19:02:19.838371 5727 upgrade_proto.cpp:43] Attempting to upgrade input file specified using deprecated transformation parameters: ../models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel I0311 19:02:19.838397 5727 upgrade_proto.cpp:46] Successfully upgraded file specified using deprecated data transformation parameters. W0311 19:02:19.838402 5727 upgrade_proto.cpp:48] Note that future Caffe releases will only support transform_param messages for transformation fields. I0311 19:02:19.838423 5727 upgrade_proto.cpp:52] Attempting to upgrade input file specified using deprecated V1LayerParameter: ../models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel I0311 19:02:20.065677 5727 upgrade_proto.cpp:60] Successfully upgraded file specified using deprecated V1LayerParameter I0311 19:02:20.070981 5727 net.cpp:1141] Copying source layer data Type:Data #blobs=0 I0311 19:02:20.070991 5727 net.cpp:1141] Copying source layer conv1 Type:Convolution #blobs=2 I0311 19:02:20.071333 5727 net.cpp:1141] Copying source layer relu1 Type:ReLU #blobs=0 I0311 19:02:20.071339 5727 net.cpp:1141] Copying source layer pool1 Type:Pooling #blobs=0 I0311 19:02:20.071360 5727 net.cpp:1141] Copying source layer norm1 Type:LRN #blobs=0 I0311 19:02:20.071365 5727 net.cpp:1141] Copying source layer conv2 Type:Convolution #blobs=2 I0311 19:02:20.074069 5727 net.cpp:1141] Copying source layer relu2 Type:ReLU #blobs=0 I0311 19:02:20.074074 5727 net.cpp:1141] Copying source layer pool2 Type:Pooling #blobs=0 I0311 19:02:20.074079 5727 net.cpp:1141] Copying source layer norm2 Type:LRN #blobs=0 I0311 19:02:20.074081 5727 net.cpp:1141] Copying source layer conv3 Type:Convolution #blobs=2 I0311 19:02:20.081769 5727 net.cpp:1141] Copying source layer relu3 Type:ReLU #blobs=0 I0311 19:02:20.081775 5727 net.cpp:1141] Copying source layer conv4 Type:Convolution #blobs=2 I0311 19:02:20.087571 5727 net.cpp:1141] Copying source layer relu4 Type:ReLU #blobs=0 I0311 19:02:20.087579 5727 net.cpp:1141] Copying source layer conv5 Type:Convolution #blobs=2 I0311 19:02:20.091449 5727 net.cpp:1141] Copying source layer relu5 Type:ReLU #blobs=0 I0311 19:02:20.091454 5727 net.cpp:1141] Copying source layer pool5 Type:Pooling #blobs=0 I0311 19:02:20.091459 5727 net.cpp:1141] Copying source layer fc6 Type:InnerProduct #blobs=2 I0311 19:02:20.417709 5727 net.cpp:1141] Copying source layer relu6 Type:ReLU #blobs=0 I0311 19:02:20.417728 5727 net.cpp:1141] Copying source layer drop6 Type:Dropout #blobs=0 I0311 19:02:20.417732 5727 net.cpp:1141] Copying source layer fc7 Type:InnerProduct #blobs=2 I0311 19:02:20.562619 5727 net.cpp:1141] Copying source layer relu7 Type:ReLU #blobs=0 I0311 19:02:20.562638 5727 net.cpp:1141] Copying source layer drop7 Type:Dropout #blobs=0 I0311 19:02:20.562640 5727 net.cpp:1141] Copying source layer fc8 Type:InnerProduct #blobs=2 I0311 19:02:20.598049 5727 net.cpp:1133] Ignoring source layer loss (10, 3, 227, 227) Loading file: ../101_ObjectCategories/dolphin/image_0045.jpg Classifying 1 inputs. Done in 0.55 s. Saving results into ../result.npy chibi@1604:~/caffe$ python show_result.py data/ilsvrc12/synset_words.txt result.npy #1 | n02074367 dugong, Dugong dugon | 85.7% #2 | n02134084 ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus | 2.4% #3 | n01491361 tiger shark, Galeocerdo cuvieri | 2.3% chibi@1604:~/caffe$