Plotperformance of several neural networks
이전 댓글 표시
Hi. I want to compare performance of neural network depending on training algorithm.
[net,tr] = train(net,inputs,targets,inputStates,layerStates);
[net1,tr1] = train(net1,inputs,targets,inputStates,layerStates);
Now the problem is that when I do
plotperform(tr,tr1) %%first variant
plotperform(tr,t,tr1,t) %%sendond variant
I get errors. If I do
plot(tr.perf,t,tr1.perf,t)
I get plots that are very undetalized, they almost look like straight lines. So my question is is it possible to use plotperf function to plot several neural nets at a time? or at least how to increase detalization of plot function, because it simplifies performance curve too much compared to plotperf.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!