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
There is randomness involved in training the model (e.g. the DataLoader shuffling). Being able to control this may be useful.
This should be assertable by training twice on the same input data with the same seed: in theory, we should train two identical models with the identical weights.
(Original issue text)
This would aid some cases within the testing. Care must be taken for cases where stochasticity needs to be evaluated as part of testing.
The text was updated successfully, but these errors were encountered:
It's not clear how much randomness is actually involved. It may just be DataLoader shuffling...? Need a bit more PyTorch expertise, and understanding of any transformations that we perform.
There is randomness involved in training the model (e.g. the
DataLoader
shuffling). Being able to control this may be useful.This should be assertable by training twice on the same input data with the same seed: in theory, we should train two identical models with the identical weights.
(Original issue text)
This would aid some cases within the testing. Care must be taken for cases where stochasticity needs to be evaluated as part of testing.
The text was updated successfully, but these errors were encountered: