Open
Description
I've noticed some naming inconsistencies across the torchvision datasets when it comes to specifying how to split the dataset (train/val/test). We currently have:
- Team
classes
: LSUN - Team
image_set
: SBD, VOC - Team
split
: CelebA, CityScapes, ImageNet, STL10, SVHN - Team
train
: CIFAR10, MNIST, USPS
The rest are unspecified - but you can effectively choose the split in them by choosing the root folder (e.g. for COCO).
Is there a reason for different naming conventions for each? If not, is there a case for standardising the argument name to one of the above so it's consistent?