Created
November 15, 2019 16:07
-
-
Save williamFalcon/fe20cd29a6c27730927162ea4d548caa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@pl.data_loader | |
def train_dataloader(self): | |
# REQUIRED | |
return DataLoader(...) | |
@pl.data_loader | |
def val_dataloader(self): | |
# OPTIONAL | |
return DataLoader(...) | |
@pl.data_loader | |
def test_dataloader(self): | |
# OPTIONAL | |
return DataLoader(...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment