ANN performance using function

5 ビュー (過去 30 日間)
Matt Egan
Matt Egan 2021 年 3 月 4 日
コメント済み: Matt Egan 2021 年 3 月 11 日
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

採用された回答

Nagasai Bharat
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
The above code would give mse as its error performance function
  1 件のコメント
Matt Egan
Matt Egan 2021 年 3 月 11 日
Thanks for your help

サインインしてコメントする。

その他の回答 (0 件)

製品

Community Treasure Hunt

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

Start Hunting!

Translated by