Question - How will you implement Batch Normalization in RNN?
Answer -
It is not possible to use batch normalization in RNN because statistics are computed per batch and thus batch normalization will not consider the recurrent part of the neural network. An alternative to this could be layer normalization in RNN or reparameterizing the LSTM layer that allows the use of batch normalization.