--- 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/ *.JPEG KeypointAnnotations/ / *.json PairAnnotations/ intra/ / *.json cross/ / *.json trainsplits/ train/ / *.json test/ / *.json Metadata/ filename_mapping.json keypoint_taxonomy.json ``` ## Contents - `Images/`: rendered object images, organized by category. - `KeypointAnnotations/`: per-view keypoint annotations, organized by category. - `PairAnnotations/intra/`: intra-category image-pair files. - `PairAnnotations/cross/`: cross-category image-pair files. - `PairAnnotations/trainsplits/`: train/test split pair files. - `Metadata/`: keypoint taxonomy and filename mapping. This release contains 100 categories, 4,000 images, 4,000 keypoint annotation files, and 60,001 pair annotation files. ## Download Install the Hub client: ```bash pip install -U huggingface_hub ``` Download the full dataset: ```python from huggingface_hub import snapshot_download path = snapshot_download( repo_id="GenIntelLab/SOCO", repo_type="dataset", local_dir="SOCOv1", token=True, # required while the dataset is private ) ``` Download only selected folders: ```python from huggingface_hub import snapshot_download path = snapshot_download( repo_id="GenIntelLab/SOCO", repo_type="dataset", local_dir="SOCOv1_images_and_metadata", allow_patterns=["Images/**", "Metadata/**"], token=True, ) ``` ## Citation Citation information will be added with the public release.