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
In the current implementation the data import happens at the time the PyTorch Lightning DataModule is initialised.
This is a bit messy, and also makes unit testing harder.
Splitting out the data import and the datamodule will make the code clearer, allow for easier adaptability, and allow for unit testing or even data quality checks before training begins.
The text was updated successfully, but these errors were encountered:
In the current implementation the data import happens at the time the PyTorch Lightning DataModule is initialised.
This is a bit messy, and also makes unit testing harder.
Splitting out the data import and the datamodule will make the code clearer, allow for easier adaptability, and allow for unit testing or even data quality checks before training begins.
The text was updated successfully, but these errors were encountered: