I found the following equation:
This is on the explanation of batch normalization on a book titled "Hands-On Machine Learning with Scikit-Learn and TensorFlow", published by O'Reilly. The author writes the following explanation:
The algorithm uses exponential decay to compute the running averages, which is why it requires the decay parameters. Given a new value v, the running average is updated through the equation [the equation of the image inserted here].
A good decay value is typically close to 1—for example, 0.9, 0.99, or 0.999 (you want more 9s for larger datasets and smaller mini-batches).
What is the arrow pointed to the left (but it is not used on the lim)?
