I have been using preprocessing.Normalization in tensorflow.keras.layers.experimental to normalize data. Here, when I use one input ([None,1]), I get 3 non-trainable parameters in the summary. When I use nine inputs ([None,9]), I get 19 non-trainable parameters. These examples, summary, code and complete data can be found here. How the "9" and the "19" are calculated?
I have seen a similar question for BatchNormalization but it is likely that it is not the same case for the above-mentioned normalization.
I would like to know in more detail what they mean and how are they calculated, is it related somehow to the mean, standard deviation and bias? What is the theory behind it? Can someone point to a paper?
Thanks.