Neural Network cost function normalization

3 visualizzazioni (ultimi 30 giorni)
Dong Youn Lee
Dong Youn Lee il 9 Ago 2021
Commentato: 少快 王 il 2 Gen 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.

Risposte (1)

Sahil Jain
Sahil Jain il 13 Ago 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 Commenti
少快 王
少快 王 il 2 Gen 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

Accedi per commentare.

Categorie

Scopri di più su Get Started with Deep Learning Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by