[docs]classSegmentationRawDataLoader(BaseDataLoader):"""Loader object that handles samples and labels from storage."""def__init__(self):super().__init__()
[docs]defsample(self,sample:tuple[str,str,str|None])->Sample:"""Load whole samples from media. Parameters ---------- sample Information about the sample to load. Implementation dependent. """raiseNotImplementedError("You must implement the `sample()` method")