필터 지우기
필터 지우기

Info

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

Performance errors for neural networks

조회 수: 1 (최근 30일)
Fabrizio Bernardi
Fabrizio Bernardi 2020년 10월 29일
마감: MATLAB Answer Bot 2021년 8월 20일
Hello eveyone, I saw that in shallow ANN, after training a network, I can see Training,Validation and testing performances using
plotperf(tr);
However, in my case I created a regression output layer to have a customized Loss function, and I used for training progress something like
options = trainingOptions('adam', ...
'MaxEpochs',50, ...
'GradientThreshold',2, ...
'InitialLearnRate',0.003, ...
'LearnRateSchedule','piecewise', ...
'LearnRateDropPeriod',33, ...
'LearnRateDropFactor',0.75,...
'Verbose',1, ...
'MiniBatchSize',50, ...
'Plots','training-progress');
net = trainNetwork(myInput,myTarget,layers,options);
Is it possible from this to have some functions that allows me to have a similiar perfomance plot as in the case of plotperform? Or a struct like tr?
Thank you for your help!
  댓글 수: 2
Aditya Patil
Aditya Patil 2020년 11월 17일
What issues did you face with 'Plots','training-progress' argument?
Fabrizio Bernardi
Fabrizio Bernardi 2020년 11월 17일
I wanted to include validation as well, but I only now have seen the option to includit through XValidation and Yvalidation data! All solved, thanks for your time!

답변 (0개)

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

Community Treasure Hunt

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

Start Hunting!

Translated by