Object Detection Datasets
Collection
Training a robust and accurate object detection model requires a comprehensive dataset. This collection contains diverse Object Detection datasets.
•
2 items
•
Updated
Error code: TooBigContentError
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.
The SKU-110k dataset is a collection of densely packed retail shelf images, designed to support research in object detection tasks. Developed by Eran Goldman et al., the dataset contains over 110,000 unique store keeping unit (SKU) categories with densely packed objects, often looking similar or even identical, positioned in proximity.
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("PrashantDixit0/SKU-110K")
# Access splits
train_data = dataset['train']
# Example: Load first image
from PIL import Image
import io
sample = train_data[0]
image = Image.open(BytesIO(base64.b64decode(sample["image"]["bytes"]))
image.show()
The SKU-110k dataset is widely used for training and evaluating deep learning models in object detection tasks, especially in densely packed scenes such as retail shelf displays. Its applications include: