how can i evaluate my artificial neural network when the targets' range is very short and mse doesnt work?
이전 댓글 표시
I'm working with a.n.n in matlab and I want to fit a network to my experimental datas. Totally, most of MLPs I train can work easily, and no matter how many neurons I have used, most of networks have a mse less than 0.001 which is acceptable.
but the problem is regression, in the regression plots for test data, result is not accurate enough. and when I check the network manually with my datas, i dont get what I need.
what shoud I do? remembering that my targets have a rang of : 0.1000 to 0.1800 .
is there any other parameter for evaluating the network accuracy?
답변 (1개)
Greg Heath
2015년 3월 28일
Yes, the normalized MSE
NMSE = mse(t-y)/mean(var(t',1))
and corresponding coefficient of determination or Rsquared
R2 = 1 - NMSE
============================================================
NEWSGROUP and ANSWERS search info:
greg NMSE
greg R2
SEARCH ENGINE INFO:
Coefficient of determination - Wikipedia, the free encyclopedia
en.wikipedia.org/wiki/Coefficient_of_determination
R2 - Wikipedia, the free encyclopedia
en.wikipedia.org/wiki/R2
Thank you for formally accepting my answer
Greg
댓글 수: 2
Poooneh mmm
2015년 4월 9일
Greg Heath
2015년 4월 9일
It sounds like you didn't concentrate on searching my posts in
1. The NEWSGROUP
2. ANSWERS
With targets standardized to zero-mean/unit-variance, NMSE = MSE.
In short I usually recommend
1. Standardizing inputs and outputs to zero-mean/unit-variance (zscore or mapstd)
2. MSEgoal <= 0.01 (Rsquare >= 0.99)
3. MinGrad <= MSEgoal/100
4. Minimize the number of hidden nodes using a double loop search:
a. outer loop over Hmin:dH:Hmax
b. inner loop over 1:Ntrials initial random number states (determines random trn/val/tst division and initial weights)
I have posted zillions of examples.
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!