File size: 2,072 Bytes
ecb47e2
 
a45b628
 
 
 
 
 
 
 
 
ecb47e2
a45b628
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
license: cc-by-4.0
pretty_name: SOCO-LVLM
viewer: false
task_categories:
- visual-question-answering
tags:
- computer-vision
- multimodal
- object-correspondence
- synthetic-data
---

# SOCO-LVLM

SOCO-LVLM provides multiple-choice semantic object correspondence evaluation data for
LVLMs. This is the SOCO-LVLM v1 release, derived from SOCOv1. The original SOCO
correspondence benchmark is available in
the [GenIntelLab/SOCO](https://huggingface.co/datasets/GenIntelLab/SOCO) dataset repository.

## Repository Layout

```text
GenIntelLab/SOCO-LVLM
  SOCO_LVLM/
    soco_lvlm_img.tsv
    soco_lvlm_imgtxt.tsv
    soco_lvlm_txt.tsv
  README.md
```

## Variants

- `soco_lvlm_img.tsv`: image-input evaluation variant (approximately 3.24 GB).
- `soco_lvlm_imgtxt.tsv`: image-and-text evaluation variant (approximately 3.24 GB).
- `soco_lvlm_txt.tsv`: text-input evaluation variant (approximately 1.63 GB).

Each TSV uses the columns `question`, `image`, `image_path`, `answer`, `index`, `g_index`,
`qid`, `category`, `A`, `B`, `C`, and `D`.

## Download

Install the Hub client:

```bash
pip install -U huggingface_hub
```

Download all three variants:

```bash
hf download GenIntelLab/SOCO-LVLM --repo-type dataset --local-dir SOCO-LVLM
```

Download only one variant in Python:

```python
from huggingface_hub import hf_hub_download

path = hf_hub_download(
    repo_id="GenIntelLab/SOCO-LVLM",
    repo_type="dataset",
    filename="SOCO_LVLM/soco_lvlm_img.tsv",
)
```

Replace the filename with `soco_lvlm_imgtxt.tsv` or `soco_lvlm_txt.tsv` to select a
different evaluation variant.

## Citation

```bibtex
@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}
}
```