data_utils/functions.py [146:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            interpolation = transforms.RandomResizedCrop(224).interpolation
            train_dataset = datasets.ImageFolder(
                traindir,
                transforms.Compose(
                    [
                        transforms.ToTensor(),  # torch.nn.functional.pad needs a tensor as input
                        transforms.RandomAffine(
                            0,
                            translate=(args.tvalues[0], args.tvalues[1]),
                            scale=None,
                            shear=None,
                            fill=0,
                            interpolation=interpolation,
                        ),  # translate
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



data_utils/functions.py [210:223]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            interpolation = transforms.RandomResizedCrop(224).interpolation
            train_dataset = datasets.ImageFolder(
                traindir,
                transforms.Compose(
                    [
                        transforms.ToTensor(),  # torch.nn.functional.pad needs a tensor as input
                        transforms.RandomAffine(
                            0,
                            translate=(args.tvalues[0], args.tvalues[1]),
                            scale=None,
                            shear=None,
                            fill=0,
                            interpolation=interpolation,
                        ),  # translate
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



