MCPcopy Create free account
hub / github.com/MarcCoru/locationencoder / val_dataloader

Method val_dataloader

data/era5dataset.py:100–101  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

98 return DataLoader(self.train_ds, batch_size=self.batch_size, num_workers=self.num_workers, shuffle=True)
99
100 def val_dataloader(self):
101 return DataLoader(self.valid_ds, batch_size=self.batch_size, num_workers=self.num_workers, shuffle=False)
102
103 def test_dataloader(self):
104 return DataLoader(self.evalu_ds, batch_size=self.batch_size, num_workers=self.num_workers, shuffle=False)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected