--- license: cc-by-4.0 pretty_name: SOCOv1 viewer: false task_categories: - image-to-image tags: - computer-vision - keypoint-detection - object-correspondence - synthetic-data size_categories: - 10K Images//*.JPEG KeypointAnnotations.zip # -> KeypointAnnotations//*.json PairAnnotations.zip # -> PairAnnotations/{intra,cross,trainsplits/{train,test}}//*.json Metadata/ filename_mapping.json keypoint_taxonomy.json README.md ``` After unzipping, the dataset tree is: ```text SOCOv1/ Images//*.JPEG KeypointAnnotations//*.json PairAnnotations/ intra//*.json cross//*.json trainsplits/ train//*.json test//*.json Metadata/ filename_mapping.json keypoint_taxonomy.json ``` ## Contents - `Images.zip`: rendered object images, organized by category. - `KeypointAnnotations.zip`: per-view keypoint annotations, organized by category. - `PairAnnotations.zip`: image-pair files for intra-category (`intra`), cross-category (`cross`), and the predefined train/test splits (`trainsplits`). - `Metadata/`: keypoint taxonomy and filename mapping (shipped unzipped). This release contains 100 categories, 4,000 images (40 per category), 4,000 keypoint annotation files, and 60,000 pair annotation files (20,000 intra-category, 20,000 cross-category, and a 10,000 / 10,000 intra-category train / test split). ## Download Install the Hub client: ```bash pip install -U huggingface_hub ``` Download the repository and unpack the archives: ```bash huggingface-cli download GenIntelLab/SOCO --repo-type dataset --local-dir SOCOv1 cd SOCOv1 && for z in *.zip; do unzip -q "$z" && rm "$z"; done ``` Equivalently in Python: ```python from huggingface_hub import snapshot_download snapshot_download( repo_id="GenIntelLab/SOCO", repo_type="dataset", local_dir="SOCOv1", ) # then unzip Images.zip, KeypointAnnotations.zip, PairAnnotations.zip inside SOCOv1/ ``` ## Using the data After extraction the folder layout maps directly onto a dataset-root path: point your loader at the `SOCOv1/` directory and read images from `Images//` and pairs from the relevant `PairAnnotations/` subfolder. For evaluation, use `PairAnnotations/intra` (within-category pairs). For training and evaluating a probe, use the predefined `PairAnnotations/trainsplits/train` and `PairAnnotations/trainsplits/test` splits. Each pair file references two views and their corresponding keypoints. Per-view keypoints are also available under `KeypointAnnotations//`. ## Citation ``` @misc{duenkel2026soco, title = {SOCO: Benchmarking Semantic Object Correspondence in Vision Foundation Models}, author = {D{\"u}nkel, Olaf and Sunagad, Basavaraj and Wang, Haoran and Hoffmann, David T. and Theobalt, Christian and Kortylewski, Adam}, year = {2026}, eprint = {2605.31597}, archivePrefix = {arXiv}, primaryClass = {cs.CV}, url = {https://arxiv.org/abs/2605.31597} } ```