Datasets:
Formats:
parquet
Size:
10K - 100K
ArXiv:
Tags:
personalization
instance_detection
instance_classification
instance_segmentation
instance_retrieval
License:
image
imagewidth (px) 1.02k
1.02k
| mask
imagewidth (px) 1.02k
1.02k
| label
stringlengths 9
40
| scene_type
stringclasses 1
value |
---|---|---|---|
bottles_adobe | train |
||
bottles_adobe | train |
||
bottles_adobe | train |
||
bottles_ai2 | train |
||
bottles_ai2 | train |
||
bottles_ai2 | train |
||
bottles_black_dots | train |
||
bottles_black_dots | train |
||
bottles_black_dots | train |
||
bottles_black_ibm | train |
||
bottles_black_ibm | train |
||
bottles_black_ibm | train |
||
bottles_blue_microsoft | train |
||
bottles_blue_microsoft | train |
||
bottles_blue_microsoft | train |
||
bottles_caltech_y | train |
||
bottles_caltech_y | train |
||
bottles_caltech_y | train |
||
bottles_clear_black_top | train |
||
bottles_clear_black_top | train |
||
bottles_clear_black_top | train |
||
bottles_clear_green | train |
||
bottles_clear_green | train |
||
bottles_clear_green | train |
||
bottles_clear_white_top | train |
||
bottles_clear_white_top | train |
||
bottles_clear_white_top | train |
||
bottles_dark_blue_coffee | train |
||
bottles_dark_blue_coffee | train |
||
bottles_dark_blue_coffee | train |
||
bottles_dark_mark | train |
||
bottles_dark_mark | train |
||
bottles_dark_mark | train |
||
bottles_icvss_2024 | train |
||
bottles_icvss_2024 | train |
||
bottles_icvss_2024 | train |
||
bottles_mit_eecs | train |
||
bottles_mit_eecs | train |
||
bottles_mit_eecs | train |
||
bottles_neon_pink | train |
||
bottles_neon_pink | train |
||
bottles_neon_pink | train |
||
bottles_pink_rei | train |
||
bottles_pink_rei | train |
||
bottles_pink_rei | train |
||
bottles_uber_ai | train |
||
bottles_uber_ai | train |
||
bottles_uber_ai | train |
||
bottles_white_a | train |
||
bottles_white_a | train |
||
bottles_white_a | train |
||
bottles_white_coffee | train |
||
bottles_white_coffee | train |
||
bottles_white_coffee | train |
||
bottles_white_hydroflask | train |
||
bottles_white_hydroflask | train |
||
bottles_white_hydroflask | train |
||
bottles_white_stanley | train |
||
bottles_white_stanley | train |
||
bottles_white_stanley | train |
||
mugs_black_neurips | train |
||
mugs_black_neurips | train |
||
mugs_black_neurips | train |
||
mugs_black_purple | train |
||
mugs_black_purple | train |
||
mugs_black_purple | train |
||
mugs_black_schwartzman | train |
||
mugs_black_schwartzman | train |
||
mugs_black_schwartzman | train |
||
mugs_blue_flowers | train |
||
mugs_blue_flowers | train |
||
mugs_blue_flowers | train |
||
mugs_blue_greek | train |
||
mugs_blue_greek | train |
||
mugs_blue_greek | train |
||
mugs_blue_leaves | train |
||
mugs_blue_leaves | train |
||
mugs_blue_leaves | train |
||
mugs_blue_neurips | train |
||
mugs_blue_neurips | train |
||
mugs_blue_neurips | train |
||
mugs_christmas | train |
||
mugs_christmas | train |
||
mugs_christmas | train |
||
mugs_cornell_dots | train |
||
mugs_cornell_dots | train |
||
mugs_cornell_dots | train |
||
mugs_green_patterned | train |
||
mugs_green_patterned | train |
||
mugs_green_patterned | train |
||
mugs_light_green | train |
||
mugs_light_green | train |
||
mugs_light_green | train |
||
mugs_orange_jane_st | train |
||
mugs_orange_jane_st | train |
||
mugs_orange_jane_st | train |
||
mugs_pink_orange | train |
||
mugs_pink_orange | train |
||
mugs_pink_orange | train |
||
mugs_pink_plain | train |
End of preview. Expand
in Dataset Viewer.
PODS: Personal Object Discrimination Suite
🌐Project page
📖Paper
GitHub
We introduce the PODS (Personal Object Discrimination Suite) dataset, a new benchmark for personalized vision tasks.
PODS
The PODS dataset is new a benchmark for personalized vision tasks. It includes:
- 100 common household objects from 5 semantic categories
- 4 tasks (classification, retrieval, segmentation, detection)
- 4 test splits with different distribution shifts.
- 71-201 test images per instance with classification label annotations.
- 12 test images per instance (3 per split) with segmentation annotations.
Metadata is stored in two files:
pods_info.json
:classes
: A list of class namesclass_to_idx
: Mapping of each class to an integer idclass_to_sc
: Mapping of each class to a broad, single-word semantic categoryclass_to_split
: Mapping of each class to theval
ortest
split.
pods_image_annos.json
: Maps every image ID to its class and test split (one of[train, objects, pose, all]
)
Using PODS
Loading the dataset using HuggingFace
To load the dataset using HuggingFace datasets
, install the library by pip install datasets
from datasets import load_dataset
pods_dataset = load_dataset("chaenayo/PODS")
You can also specify a split by:
pods_dataset = load_dataset("chaenayo/PODS", split="train") # or "test" or "test_dense"
Loading the dataset directly
PODS can also be directly downloaded via command:
wget https://data.csail.mit.edu/personal_rep/pods.zip
Citation
If you find our dataset useful, please cite our paper:
@article{sundaram2024personalized,
title = {Personalized Representation from Personalized Generation}
author = {Sundaram, Shobhita and Chae, Julia and Tian, Yonglong and Beery, Sara and Isola, Phillip},
journal = {Arxiv},
year = {2024},
}
- Downloads last month
- 10