You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Data loader will affect the random mechanism even with fixed seed, which will make the code unable to reproduce the results.
To Reproduce
Steps to reproduce the behavior:
Create a training data loader A
Train a pytorch model with the training data loader and monitor the loss
Create another data loader B, but don't use it in the training process. Rerun the training code with data loader A, and monitor the loss. The loss will be different with Step 2.
It is a little bit wierd to me, I don't know whether it is a bug or just by design.