images listlengths 17.3k 17.3k | annotations listlengths 17.3k 80.7k | categories listlengths 31 126 |
|---|---|---|
[{"height":200,"width":250,"id":1881,"file_name":"n02486261_8883.JPEG"},{"height":500,"width":375,"i(...TRUNCATED) | [{"id":8539,"image_id":1881,"category_id":4,"bbox":[203.48,103.4,20.82,20.48],"segmentation":[[203.4(...TRUNCATED) | [{"id":0,"name":"head","supercategory":"quadruped"},{"id":1,"name":"body","supercategory":"quadruped(...TRUNCATED) |
[{"height":200,"width":250,"id":1881,"file_name":"n02486261_8883.JPEG"},{"height":500,"width":375,"i(...TRUNCATED) | [{"id":1881,"image_id":1881,"category_id":51,"bbox":[134.0,103.0,90.0,66.0],"segmentation":[[209.0,1(...TRUNCATED) | [{"id":0,"name":"antelope","supercategory":"quadruped"},{"id":1,"name":"snake","supercategory":"snak(...TRUNCATED) |
Mixed Parts
Mixed Parts is the annotation bundle used by CALICO for part-focused semantic co-segmentation. It contains multi-image object-part comparison samples curated from ADE20KPart234, PartImageNet, and PACO-LVIS image assets.
This repository contains annotations only. Users must download the original image datasets separately from their upstream sources and overlay these annotations into the expected CALICO directory structure.
Files
mixed_parts_train.json
mixed_parts_val.json
mixed_parts_test.json
ADE20KPart234/ade20k_instance_train_mixed_parts.json
ADE20KPart234/ade20k_instance_val_mixed_parts.json
PartImageNet/annotations/train/train_mixed_parts.json
PartImageNet/annotations/train_whole/train_mixed_parts.json
PartImageNet/annotations/val/val_mixed_parts.json
PartImageNet/annotations/val_whole/val_mixed_parts.json
PartImageNet/annotations/test/test_mixed_parts.json
PartImageNet/annotations/test_whole/test_mixed_parts.json
The official Mixed Parts test split is mixed_parts_test.json.
Split Sizes
| Split | Samples |
|---|---|
| Train | 2,380,749 |
| Val | 1,999 |
| Test | 999 |
Source Data
Download the original source data from the upstream projects:
- ADE20KPart234: download
ADE20KPart234.tar.gzfrom InternRobotics/OV_PARTS. - PartImageNet: download
PartImageNet_Seg.zipfrom tacju/partimagenet. - COCO2017 and PACO-LVIS: follow facebookresearch/paco and download
paco_lvis_v1.zip. PACO-LVIS annotations reference COCO2017 images, so COCO2017 images are also required.
Data Preparation
From the CALICO repository root, create the default data layout:
mkdir -p data/mixed_parts_data data/coco_2017
Extract ADE20KPart234 and PartImageNet under data/mixed_parts_data:
tar -xzf /path/to/ADE20KPart234.tar.gz -C data/mixed_parts_data
unzip /path/to/PartImageNet_Seg.zip -d data/mixed_parts_data
Extract PACO-LVIS annotations under data/mixed_parts_data/paco_lvis/annotations:
mkdir -p data/mixed_parts_data/paco_lvis/annotations
unzip /path/to/paco_lvis_v1.zip -d data/mixed_parts_data/paco_lvis/annotations
Place COCO2017 images under data/coco_2017:
data/coco_2017/
βββ train2017/
βββ val2017/
Download this annotation bundle directly into data/mixed_parts_data:
huggingface-cli download PLAN-Lab/MixedParts \
--repo-type dataset \
--local-dir data/mixed_parts_data \
--local-dir-use-symlinks False
If you downloaded the bundle somewhere else, overlay it into data/mixed_parts_data:
cp -r /path/to/MixedParts/* data/mixed_parts_data/
The prepared data should have this structure:
data/
βββ coco_2017/
β βββ train2017/
β βββ val2017/
βββ mixed_parts_data/
βββ mixed_parts_train.json
βββ mixed_parts_val.json
βββ mixed_parts_test.json
βββ ADE20KPart234/
β βββ ade20k_instance_train_mixed_parts.json
β βββ ade20k_instance_val_mixed_parts.json
β βββ images/
β βββ annotations_detectron2_part/
βββ PartImageNet/
β βββ annotations/
β β βββ train/train_mixed_parts.json
β β βββ train_whole/train_mixed_parts.json
β β βββ val/val_mixed_parts.json
β β βββ val_whole/val_mixed_parts.json
β β βββ test/test_mixed_parts.json
β β βββ test_whole/test_mixed_parts.json
β βββ images/
βββ paco_lvis/
βββ annotations/
βββ paco_lvis_v1_train.json
βββ paco_lvis_v1_val.json
βββ paco_lvis_v1_test.json
Evaluation with CALICO
After preparing the data, run evaluation from the CALICO repository root:
python evaluate.py \
--merged_ckpt_path PLAN-Lab/CALICO \
--dataset_dir ./data \
--output_save_path ./evaluate_results/calico_mixed_parts \
--val_dataset "MixedPartsObjectVal|MixedPartsPartVal" \
--multi_image_filepath_prefix ./data/mixed_parts_data/mixed_parts_test.json \
--mode test \
--compute_metrics
For full setup details, see the CALICO repository documentation.
Licensing and Terms
This repository provides Mixed Parts annotations for research use. The underlying images and source annotations come from ADE20KPart234, PartImageNet, COCO2017, and PACO-LVIS. Users are responsible for following the licenses and terms of the upstream datasets.
Citation
If you use Mixed Parts or CALICO, please cite:
@article{nguyen2025calico,
title={CALICO: Part-Focused Semantic Co-Segmentation with Large Vision-Language Models},
author={Nguyen, Kiet A. and Juvekar, Adheesh and Yu, Tianjiao and Wahed, Muntasir and Lourentzou, Ismini},
journal={In Proceedings for the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year={2025}
}
- Downloads last month
- -