您好,我最近开始为我自己的数据集微调 Alexnet 模型。
我想修改最后两层,因为我只有两个类:
net.layers = net.layers(1:end-2);
但是当我像这样修改最终的 FC 层时,它给了我错误。
net.layers{end+1} = struct('type', 'conv',...
'weights', {{f*randn(1,1,4196,2, 'single'), zeros(1,2,'single')}},...
'stride', [1 1],...
'pad', [0 0 0 0]) ;
Cell contents assignment to a non-cell array object.
任何人,请帮我解决错误
谢谢
更新: