Hi All
I have to design a neural network (fitting ) with one input and 7 outputs , that the order of 100 and the outputs in the order of 1e+8 , the Gradient is too big , something like 1e+5 , so the validation stops so early which training method should I use ? or what modification should I apply on the network ? if the solution is mapminmax , how should I roll back to the real quantities of the output as the target was ?

댓글 수: 3

farzad
farzad 2015년 3월 20일
Actually
without using the mapminmax , the gradient minimum is 1e14 , but the results are more acceptable , by using the mapminmax , the gradient is so smaller , but the results are not really acceptable, and the regression shows it's less accurate
WHY ?!?!?!
farzad
farzad 2015년 3월 21일
Anyone has had the same experience?
farzad
farzad 2015년 3월 21일
Even when I try with one input one output , and there is too much difference in orders , this problem persists

댓글을 달려면 로그인하십시오.

 채택된 답변

Greg Heath
Greg Heath 2015년 3월 21일

1 개 추천

I usually standardize inputs and outputs using ZSCORE (zero mean, unit variance) before training.
Hope this helps.
Thank you for formally accepting my answer
Greg

댓글 수: 5

thank you dear professor
I am just not sure about this :
[ t meanT stdT] = zscore(T)
here ,
Y = meanT + stdT.*y;
I have problem in the multiplication of stdT .*y , cause y does not have the same size of stdT
farzad
farzad 2015년 3월 21일
since definitely stdT and y do now have the same dimension
I did
meanT= mean(tc);
stdT=std(tc);
[ tc meanT stdT] = zscore(tc)
and after training :
inp=[602.1900247744 2014.5917518769 2.4056877954 1.1305517568]';
an = sim(net3,inp)
an = meanT + stdT'* an';
but it doesn't work
the std is 1x1055 and an is 4x1
imposible to give a result
meanT is 1x1055
farzad
farzad 2015년 3월 22일
yet no sucsses
is the mapstd work the same as zcore ?
farzad
farzad 2015년 3월 22일
Is there a major difference applying mapstd instead of Zcore ?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 AI for Signals에 대해 자세히 알아보기

질문:

2015년 3월 20일

댓글:

2015년 3월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by