ANN performance using function
조회 수: 1 (최근 30일)
이전 댓글 표시
I have produced an ANN that is predicting power output of wind turbines based on inputs. I have foudn the below function on mathworks site:
perform(net,t,y)
I ahve incorporated this in my code and it returns a value. My questions is what exactly does the number mean/reate to? Is there an 'ideal' value for this (ie. closeest to 0 is desirable)
Thanks
댓글 수: 0
채택된 답변
Nagasai Bharat
2021년 3월 11일
Hi,
The value perform function returns network performance calculated according to the net.performFcn and net.performParam property values which would differ on the train function you have used. You could check for these property values and get the used error performance metric.
For example
[x,t] = simplefit_dataset;
net = feedforwardnet(20);
net = train(net,x,t);
y = net(x);
perf = perform(net,t,y)
net.performFcn
net.performParam
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Modeling and Prediction with NARX and Time-Delay Networks에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!