Replies: 1 comment 2 replies
-
At what points during training do you need to change the dataset parameters? if it's at the start of every epoch, this flag should work for you: https://pytorch-lightning.readthedocs.io/en/latest/common/trainer.html#reload-dataloaders-every-epoch If you're using a lightning datamodule, you can re-initialize the dataset and then create a new dataloader across training/validation/test |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to change dataset parameters(e.g. other augmentations). What is the pl way to reinit dataset and dataloader with new parameters?
Beta Was this translation helpful? Give feedback.
All reactions