Undefined function or variable 'activations'

Please sort out this problem. I found this problem in the code given below
function W_CNN=cnnFeatures_newnew(I)
net = load('imagenet-vgg-verydeep-19.mat');
net = vl_simplenn_tidy(net);
beta=0.2; % constant used in exposure mask calculation
for ii=1:size(I,4)
%fetaure extraction from first layer
features(:,:,:,ii) = activations(net,I(:,:,:,ii),1);

Antworten (1)

madhan ravi
madhan ravi am 27 Dez. 2018
Bearbeitet: madhan ravi am 27 Dez. 2018

0 Stimmen

suspect activations hasn‘t been defined nor is a function , check it
whos activations % to see if a variable
which activations -all % to see if a function

Kategorien

Gefragt:

am 27 Dez. 2018

Bearbeitet:

am 27 Dez. 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by