val_dataloader has
shuffle=True` though its false
#11392
-
I am working with pytorchvideo with pytorch lightning but it say
A you can see, shuffle is False. but it keep me giving warning that
Sorry, i am not sure whether i had to ask it at pytorchvideo or here |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @talhaanwarch, you're asking it in the right place! It's a warning from Lightning, and as I looked at the definition of import warnings
warnings.simplefilter('ignore', category=UserWarning, message="Your `val_dataloader` has `shuffle=True`.*") |
Beta Was this translation helpful? Give feedback.
Hi @talhaanwarch, you're asking it in the right place!
It's a warning from Lightning, and as I looked at the definition of
make_clip_sampler
of pytorchvideo, I believe it's the same reason as #10771. You can simply ignore it with some filter like below if you need.