datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
VOC2012voc2012
PASCAL VOC 2012
PASCAL VOC 2012, packed once with a config per task view, so that a project can pull the split it
needs without unpacking VOCtrainval_11-May-2012.tar and wiring up paths first.
from datasets import load_dataset
seg = load_dataset("shijli/voc2012", "segmentation") # 1464 train / 1449 val
aug = load_dataset("shijli/voc2012", "segmentation_aug") # 10582 train / 1449 val
det = load_dataset("shijli/voc2012", "detection") # 5717 train /… See the full description on the dataset page: https://huggingface.co/datasets/shijli/voc2012.VOC2012
