how to see training, validation and test regression lot in ANN

조회 수: 4 (최근 30일)
Sunita
Sunita 2023년 11월 29일
댓글: Sam Chak 2023년 11월 29일
how to see training, validation and test regression lot in ANN

채택된 답변

Sam Chak
Sam Chak 2023년 11월 29일
편집: Sam Chak 2023년 11월 29일
Here is an example using the plotregression() command.
x = 0:10;
targs1 = x.^2;
outs1 = targs1 + 7*randn(1, length(targs1));
outs2 = targs1 + 11*randn(1, length(targs1));
outs3 = targs1 + 13*randn(1, length(targs1));
outs4 = targs1 + 17*randn(1, length(targs1));
plotregression(targs1, outs1, 'Training', targs1, outs2, 'Validation', targs1, outs3, 'Test', targs1, outs4, 'All')
  댓글 수: 2
Sunita
Sunita 2023년 11월 29일
이동: Sam Chak 2023년 11월 29일
I am getting R-total plot from plotregression(T, Y) .
I need this (see attach)
Sam Chak
Sam Chak 2023년 11월 29일
Still using the plotregression() command. Take a look at the updated Answer. If you find the solution helpful, please consider clicking 'Accept' ✔ on the answer and voting 👍 for it. Thanks a bunch!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Analysis of Variance and Covariance에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by