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
Some linear operators like FisherMCLinearOperator rely on deterministic mini-batches, i.e. that shuffle=False for the used data loader. Otherwise, there will be the following error which does not point out the cause of the issue:
RuntimeError: Check for deterministic matvec failed.
To avoid this we could check that shuffle=False upon construction.
The text was updated successfully, but these errors were encountered:
Some linear operators like
FisherMCLinearOperator
rely on deterministic mini-batches, i.e. thatshuffle=False
for the used data loader. Otherwise, there will be the following error which does not point out the cause of the issue:To avoid this we could check that
shuffle=False
upon construction.The text was updated successfully, but these errors were encountered: