Skip to content
Snippets Groups Projects

Making use of LightningDataModule and simplification of data loading

Merged Daniel CARRON requested to merge add-datamodule into main
Compare and Show latest version
3 files
+ 5
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -36,7 +36,7 @@ class RawDataLoader(_BaseRawDataLoader):
rc = load_rc()
self.datadir = rc.get("datadir.padchest", os.path.realpath(os.curdir))
def sample(self, sample: tuple[str, list[int]]) -> Sample:
def sample(self, sample: tuple[str, int | list[int]]) -> Sample:
"""Loads a single image sample from the disk.
Parameters
@@ -68,7 +68,7 @@ class RawDataLoader(_BaseRawDataLoader):
return tensor, dict(label=sample[1], name=sample[0]) # type: ignore[arg-type]
def label(self, sample: tuple[str, list[int]]) -> list[int]:
def label(self, sample: tuple[str, int | list[int]]) -> int | list[int]:
"""Loads a single image sample label from the disk.
Parameters
Loading