I am training a neural network. For training I get 80% of my data and divide it to a number of mini-batches. I train on each mini batch, then update parameters, until all data is visited. I repeat the whole procedure for a number of epochs.
The question is about the remaining 10%+10% of data: how to change the validation set during this process? Should I use rotating mini batches for validation set as well?