みなさん、こんにちは。時間を割いて読んでいただきありがとうございます。ニューラル ネットワークをトレーニングする次のコードがあります。
P = [-1 2 0.5 3];
T1 = 1;
T2 = 2;
T3 = 1.5;
net = newff([-1 3;-1 3;-1 3;-1 3],[2 1],{'logsig' 'logsig'},'traingd');
net.trainParam.epochs = 50;
net.trainParam.lr = 0.6;
%now start to train for the first 50 epochs
[net,Y,E,Pf,Af,tr] = train(net,P',T1)
エポックごとにエラーが発生したい。ネットワークを 50 エポックにわたってトレーニングしたところ、最後に最終的なエラーが表示されましたが、すべてのエラーが必要です!