Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
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
- Downloads last month
- 13
