normalizing for neural net fitting?

조회 수: 3 (최근 30일)
arian hoseini
arian hoseini 2023년 4월 13일
댓글: arian hoseini 2023년 4월 15일
i have 405 data (value) that i normalized them with matlab function or (formula) and i gave it to neural net fitting to train it and i got an output...the qustion is how do i unnormalize the (output) ?
avg1=(sum(alltargets(1,:))) / 405;
S1= std(alltargets(1,:));
for i=1:405
Z(1,i)=((alltargets(1,i)-avg1)/S1);
end

답변 (1개)

Drew
Drew 2023년 4월 13일
It looks like your question is under-specified. What is the design of the neural network? What are the outputs of the neural network designed to represent? For example, is the neural network being used for classification, regression, feature extraction, or something else?
Another idea: Depending on what task you are trying to accomplish, you might gain guidance for your workflow by using an app like the Classification Learner or Regression Learner from the SMLT toolbox, or an app from the Deep Learning toolbox.
  댓글 수: 1
arian hoseini
arian hoseini 2023년 4월 15일
i don't know much about neural network but let me explain m work for u...i have an input that contains 5 type of data (1.humdity/2.SDD/3....) that each of them has 405 value...and i have a target that contains 3 harmonic(first harmonic third and fifth) that has 405 value too....i normalize input and target and give them to neural net fitting then i get an output that i need to unnormalize it then gain the FFT from that and compare it wiith other FFT that i have.

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

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by