normalizing for neural net fitting?
3 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(1 个)
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!