how to see training, validation and test regression lot in ANN
5 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Sam Chak
2023-11-29
编辑:Sam Chak
2023-11-29
Hi @Sunita
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 个评论
Sam Chak
2023-11-29
Hi @Sunita
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 Center 和 File Exchange 中查找有关 Hypothesis Tests 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!