我正在尝试进行神经网络的多种设计,并且从这些试验中我想要性能最佳的神经网络,然后使用性能最佳的设计重新训练我的最终网络。我在试用版4中获得了最佳性能。但是当我尝试使用这些值重新训练网络时,我会得到不同的输出。请帮我。 我的代码是:
load inputdata
load targetdata
x=input;
t=target;
hiddenLayerSize = 30;
net = patternnet(hiddenLayerSize);
net.trainFcn='trainbr';
net.trainParam.epochs=100;
rng(0);
Ntrials=20;
for i = 1:Ntrials
s{i} = rng;
net = configure(net,x,t);
[ net tr y e] = train(net,x,t);
% Best mseval over all epochs of ith run
netIW0{i} = net.IW
netb0{i} = net.b
netLW0{i} = net.LW
tstind = tr.testInd;
ytst = y(:,tstind);
ttst = t(:,tstind);
%mseval(i) = mse(net,ttst,ytst)
mseval(i)=tr.best_tperf;
plt=plt+1,figure(plt)
plotconfusion(ttst,ytst)
title([ ' TEST SET CONFUSION MATRIX. TRIAL = ', num2str(i)] )
hold off
end
[ minmseval ibest ] = min(mseval);
rng=s{ibest}; % For repeating the best design
bestnet = configure(net,x,t);
[ bestnet tr y e] = train(net,x,t);
bestIW0 = bestnet.IW
bestb0 = bestnet.b
bestLW0 = bestnet.LW
msetst=tr.best_tperf;
tstind = tr.testInd;
ytst = y(:,tstind);
ttst = t(:,tstind);
fWb=getwb(bestnet);
%msetst= mse(bestnet,ttst,ytst)
plt=plt+1,figure(plt)
plotconfusion(ttst,ytst)
title([ ' OVERALL TEST SET CONFUSION MATRIX= '] )
hold off
save bestnet
view(bestnet)
答案 0 :(得分:1)
我不知道为什么你无法重现你最好的网络。但是你可以通过将这20个网中的每一个都保存为单独的对象来解决这个问题,而不仅仅是回忆最好的一个并删除其他对象。这将是一种更快捷的方式,因为您不需要再次训练您的网络。