For Keras fit method, does "shuffle=True" shuffle BOTH the training and validation samples or just the training dataset?

Yes.

The validation set is just being used how well the trained model works on examples it hasn’t seen during training, and so it being shuffled is irrelevant.

3 Likes