Dataset Card for "imagenet_batched_64"
Subset of ImageNet-1k batched by image size
from datasets import load_dataset
import PIL.Image as Image
import io
dataset = load_dataset("danjacobellis/imagenet_batched_64")
img_batch = dataset['train'][0]['img_batch']
img = Image.open(io.BytesIO(img_batch[0]['bytes']))
img