https://github.com/Gus-Lab/temporal_efficient_training/blob/f9bde4107ed653cc8dd3ee58689bf3b55f6b89ba/data_loaders.py#L107
The code in line 107 is:
train_dataset = DVSCifar10(root=train_path, transform=False)
In line 88 of this file, DVSCifar10 determines whether to use transform using the following code:
if self.transform is not None:
When initializing DVSCifar10, the self.transform is initialized as a bool variable, and self.trainsform is not None will return a False result. I wonder if DVSCifar10 should use transform.
https://github.com/Gus-Lab/temporal_efficient_training/blob/f9bde4107ed653cc8dd3ee58689bf3b55f6b89ba/data_loaders.py#L107
The code in line 107 is:
train_dataset = DVSCifar10(root=train_path, transform=False)In line 88 of this file, DVSCifar10 determines whether to use transform using the following code:
if self.transform is not None:When initializing DVSCifar10, the
self.transformis initialized as a bool variable, andself.trainsform is not Nonewill return aFalseresult. I wonder if DVSCifar10 should usetransform.