(root='./path', train=True, transform=None)
| 76 | transform=transform, download=True) |
| 77 | |
| 78 | def datasetCIFAR100(root='./path', train=True, transform=None): |
| 79 | return torchvision.datasets.CIFAR100(root=root, train=train, |
| 80 | transform=transform, download=True) |
| 81 | |
| 82 | def datasetTinyImageNet(root='./path', train=True, transform=None): |
| 83 | if train: root = os.path.join(root, 'tiny-imagenet_train.pkl') |
nothing calls this directly
no outgoing calls
no test coverage detected