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

Method __init__

data/era5dataset.py:81–86  ·  view source on GitHub ↗
(self, num_workers=0, batch_size=1000,data_root='/home/kklemmer/sphericalharmonics/data/era5', label_key='t2m')

Source from the content-addressed store, hash-verified

79
80class ERA5DataModule(pl.LightningDataModule):
81 def __init__(self, num_workers=0, batch_size=1000,data_root='/home/kklemmer/sphericalharmonics/data/era5', label_key='t2m'):
82 super().__init__()
83 self.batch_size=batch_size
84 self.data_root=data_root
85 self.num_workers=num_workers
86 self.label_key = label_key
87
88
89 def setup(self, stage: str):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected