How can I get MSE and normalized MSE both as performance function when fitting Feed forward neural network?

9 ビュー (過去 30 日間)
Im fitting a feedforward neural network with 8 input parameters and 1 output parameter.i want to use MSE and normalized MSE both to measure the performance.

採用された回答

Greg Heath
Greg Heath 2018 年 10 月 26 日
Divide MSE by the mean variance of the target rows (MSE of the constant output model)
MSEref = mean(var(target',1))
NMSE = mse(target-output)/MSEref
Rsquare = 1 - NMSE
Hope this helps.
Thank you for formally accepting my answer
Greg
  2 件のコメント
Avanthi Saumyamala
Avanthi Saumyamala 2018 年 10 月 29 日
Thank you very much Greg
I saw from one of your answer MSEref computed as follows.
The average biased (e.g., divide by N) target variance is
MSE00 = mean(var(t'),1)
Is this the same or what is the correct answer?
Thank you
Avanthi

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by