We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0fb0762 + 8486d67 commit 9fe2255Copy full SHA for 9fe2255
NN/nntrain.m
@@ -12,7 +12,7 @@
12
if nn.normalize_input==1
13
[x, mu, sigma] = zscore(x);
14
nn.normalizeMean = mu;
15
- sigma(sigma==0) = 1;
+ sigma(sigma==0) = 0.0001;%this should be very small value.
16
nn.normalizeStd = sigma;
17
end
18
0 commit comments