Ben Snyder

Results 2 comments of Ben Snyder

How is the object metadata stored? One possibility might be to use the `S3BaseClass` to write a custom method of reading the file object from S3, then use the filename...

Sure, here's the complete code to reproduce what I'm seeing. ``` import torch import torchvision as tv import collections from functools import partial transforms = tv.transforms.Compose([tv.transforms.RandomResizedCrop(224, scale=(0.5, 1.)), tv.transforms.RandomHorizontalFlip(), tv.transforms.ToTensor()])...