필터 지우기
필터 지우기

plott the performance of the Neural Network

조회 수: 1 (최근 30일)
Rafa
Rafa 2011년 11월 6일
Hi, I am creating a neural network and the end of the code graph is plotted the performance of the Neural Network. I'm not able to save the graph generated in *. jpg.
Could you help me?
Below is a piece of code
.
.
net =newff(p,t,3);
net.trainParam.epochs = 30000;
net.trainParam.goal = 0;
[net,tr]=train(net,p,t);
plotperform(tr)
y = sim(net,p)
e = t-y
perf = mse(e)
thank you

답변 (1개)

Greg Heath
Greg Heath 2011년 11월 23일
The training history is contained in the output structure tr. Use this to create your own plot.
Hope this helps.
Greg

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by