What formula is used when setting net.perfor​mParam.nor​​malizatio​n = 'standard' in combination with MSE

1 Ansicht (letzte 30 Tage)
Hi,
does someone know how the error of the neural network is computed when setting up these command lines:
net.performParam.normalization = 'standard'
net.performFcn = 'mse'
In the matlab documentation there is only written, that it normalizes errors between -2 and 2, corresponding to normalizing outputs and targets between -1 and 1. But i can't figure out the formular being used.
I will be very thankful if someone can tell me the formular.

Akzeptierte Antwort

Greg Heath
Greg Heath am 25 Nov. 2018
It is just a straightforward linear transformation. For the target, t:
tn = a*t +b
-1 = a*tmin + b
1 = a*tmax + b
Just solve for a and b. Then plug in
t = (tn-b)/a
Hope this helps
Thank you for formally accepting my answer
Greg

Weitere Antworten (0)

Kategorien

Mehr zu Sequence and Numeric Feature Data Workflows finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by