(root='./path', train=True, transform=None)
| 72 | |
| 73 | |
| 74 | def datasetCIFAR10(root='./path', train=True, transform=None): |
| 75 | return torchvision.datasets.CIFAR10(root=root, train=train, |
| 76 | transform=transform, download=True) |
| 77 | |
| 78 | def datasetCIFAR100(root='./path', train=True, transform=None): |
| 79 | return torchvision.datasets.CIFAR100(root=root, train=train, |
nothing calls this directly
no outgoing calls
no test coverage detected