UserWarning: Your val_dataloader
has shuffle=True
,it is strongly recommended that you turn this off for val/test/predict dataloaders.
#10771
Answered
by
hiyyg
hiyyg
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
-
It is strange that my |
Beta Was this translation helpful? Give feedback.
Answered by
hiyyg
Nov 26, 2021
Replies: 1 comment 1 reply
-
I know what the bug is, the sampler used for val_dataloader is not |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tchaton
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I know what the bug is, the sampler used for val_dataloader is not
SequentialSampler
but it does not do any shuffling.