Why I cannot see the Validation Curve in "Plotperform"?

조회 수: 5 (최근 30일)
Mostafa Nakhaei
Mostafa Nakhaei 2020년 1월 31일
댓글: Tai Ikumi 2020년 7월 30일
Hi,
I am training a fairly large network (100,000 observations and 17 variables, 3 regression outputs) using Matlab. The "plotperform" only shows the training and testing curves and It does not show the validation curve. Why is that? How can I include validation curve as well?
I included validation test in my program:
net.divideFcn = 'divideind';
net.divideParam.trainInd = 1:75000; % the first 75,000 observations is used for training.
net.divideParam.valInd = 75000+1:98000;
net.divideParam.testInd = 98001:100000;
net.performFcn = 'mse';
net.plotFcns = {'plotperform','plottrainstate','ploterrhist', ...
'plotregression', 'plotfit'};
[net,tr] = train(net,x,y);
My network includes 3 hidden layers with 30 units each.
  댓글 수: 1
Tai Ikumi
Tai Ikumi 2020년 7월 30일
I am also interested in this issue. If you found the solution, please post it here.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by