필터 지우기
필터 지우기

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

조회 수: 4 (최근 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 CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by