[docs]classRawDataLoader(BaseDataLoader):"""A specialized raw-data-loader for the HIV-TB dataset."""datadir:pathlib.Path"""This variable contains the base directory where the database raw data is stored."""def__init__(self):self.datadir=pathlib.Path(load_rc().get(CONFIGURATION_KEY_DATADIR,os.path.realpath(os.curdir),),)
[docs]defsample(self,sample:typing.Any)->Sample:"""Load a single image sample from the disk. Parameters ---------- sample Expects a tuple containing the path suffix, within the dataset root folder, where to find the image to be loaded, and an integer, representing the sample target. Returns ------- The sample representation. """image=PIL.Image.open(self.datadir/sample[0]).convert("L")image,_=remove_black_borders(image)image=to_dtype(to_image(image),torch.float32,scale=True)image=tv_tensors.Image(image)# use the code below to view generated images# from torchvision.transforms.functional import to_pil_image# to_pil_image(tensor).show()# __import__("pdb").set_trace()returndict(image=image,target=self.target(sample),name=sample[0])
[docs]deftarget(self,sample:typing.Any)->torch.Tensor:"""Load only sample target from its raw representation. Parameters ---------- sample A tuple containing the path suffix, within the dataset root folder, where to find the image to be loaded, and an integer, representing the sample target. Returns ------- The label corresponding to the specified sample, encapsulated as a 1D torch float tensor. """returntorch.FloatTensor([sample[1]])
[docs]classDataModule(CachingDataModule):"""HIV-TB dataset for computer-aided diagnosis (only BMP files). Parameters ---------- split_path Path or traversable (resource) with the JSON split description to load. """def__init__(self,split_path:pathlib.Path|importlib.resources.abc.Traversable):super().__init__(database_split=JSONDatabaseSplit(split_path),raw_data_loader=RawDataLoader(),database_name=DATABASE_SLUG,split_name=split_path.name.rsplit(".",2)[0],task="classification",)