필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Results closeloop and doubts about this modality

조회 수: 1 (최근 30일)
FRANCISCO
FRANCISCO 2013년 2월 27일
마감: MATLAB Answer Bot 2021년 8월 20일
Well I've done some testing with closeloop, though at first with all data overfitting caused me, I have reduced the size of the data and obtained the following results in openloop:
MSE=6,28470e-05
MSEa=0,000121796
R2=0,974646308527986
R2a=0,951088280194053
R2trn=0,982303160187683
R2val=0,890073733738057
R2tst=0,923433417603953
These values I have obtained with the following code:
if true
% code
MSE = perform(net,targets,outputs);
MSEa=Neq*MSE/(Neq-Nw);
R2=1-MSE/MSE00;
R2a=1-MSEa/MSE00a;
MSEtrn=tr.perf(end);
MSEval=tr.vperf(end);
MSEtst=tr.tperf(end);
R2trn=1-MSEtrn/MSE00;
R2val=1-MSEval/MSE00;
R2tst=1-MSEtst/MSE00;
end
well as the result with closeloop is next, and I think quite disastrous for the accuracy achieved in openloop network:
Well I tried to upload a picture but I have not been able. Is a graph in which 10 iterations compared with real targets and not really look anything. To which may be due?. I have used 250 data and I do not overtighten. I would like to calculate the precision indicarais as in closeloop and if anyone knows if I explain closeloop really disastrous results are obtained. thank you very much

답변 (0개)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by