Effacer les filtres
Effacer les filtres

Neural Network cost function normalization

3 vues (au cours des 30 derniers jours)
Dong Youn Lee
Dong Youn Lee le 9 Août 2021
Commenté : 少快 王 le 2 Jan 2024
Hello,
I am using feedforward network in MATLAB.
My question is "what is the definite procedure of Normalization?".
Code: net.performParam.normalization='percent';
In the help, "'percent', which normalizes errors between -1 and 1" is written.
Then does it mean that normalization makes minimum value of errors to -1, and maximum value to 1?
For example, ground truth data is "1 2 3 4"
and the NN's output is "0.9 1.95 3 4.1"
then the errors would be "-0.1, -0.05, 0, 0.1".
Then, after normalization, will it become "-1 -0.5 0 1"?
Thanks regard.

Réponses (1)

Sahil Jain
Sahil Jain le 13 Août 2021
The documentation for "nnparam.normalization" says "If it is set to 'percent' then percentage errors are used, relative to the ranges of the original target data, and errors will be mapped to the range [-1,1]."
Therefore, if "t" and "y" are the ground truth and output predictions respectively, then the normalized error values would be
  2 commentaires
Dong Youn Lee
Dong Youn Lee le 13 Août 2021
Thanks a lot!
少快 王
少快 王 le 2 Jan 2024
Why is the range of the error not max(e) - min(e), but max(t)-min(t)? I think en(error normalization) should be:en=2*(e-min(e)) / (max(e) - min(e))-1

Connectez-vous pour commenter.

Catégories

En savoir plus sur Sequence and Numeric Feature Data Workflows dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by