cookcodes / Percepnet-Keras

percepnet implemented using Keras, still need to be optimized and tuned.
BSD 3-Clause "New" or "Revised" License
38 stars 21 forks source link

normalization #2

Open simpleishappy opened 3 years ago

simpleishappy commented 3 years ago

Thanks for sharing your code with us! May I ask how to get the parameters in the normalization.h, or what does it mean?

cookcodes commented 3 years ago

Before feed the data to neural network, the data are nomalized. It will help to reduce the loss of training result. The mean and variance data are statistic result from all training data.

simpleishappy commented 3 years ago

Thank you for the explanation, but the normalization should refer to standardization?

cookcodes commented 3 years ago

You are right, it should be standardization instead of normalization.