Hi everyone,
I'm new user of Caffe.
I have download bvlc_reference_caffenet model and try to using it. I have an input image like a cat and I wanna extract feature of that image in a specific layer in caffenet model (fc6 or fc7).
I use
res = net.forward({im_data}); % run forward
feature = res{1}; % get feature
But it return 1000-dims vector of softmax score.
Sorry about my bad English and thank you very much.