File size: 2,960 Bytes
4df5d30
 
a42f5a0
 
 
 
 
 
 
 
 
 
d7def6c
 
 
 
 
4df5d30
a42f5a0
 
 
 
 
 
 
 
 
 
 
 
d7def6c
a42f5a0
 
 
 
 
 
 
 
 
 
d7def6c
 
 
a42f5a0
 
 
 
 
 
 
 
 
 
 
d7def6c
 
 
 
a42f5a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7def6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a42f5a0
 
 
 
 
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
license: mit
pretty_name: AgentViSS
language:
- en
size_categories:
- n<1K
tags:
- multimodal
- social-simulation
- visual-social-intelligence
- multi-agent-simulation
configs:
- config_name: default
  data_files:
  - split: train
    path: train.jsonl
---

# AgentViSS Dataset

This repository contains the public data package for **AgentViSS: Can Agents
Read the Room? Benchmarking Visual Social Intelligence in Multimodal
Simulation**.

## Files

```text
.
+-- README.md
+-- train.jsonl
+-- data.json
+-- images/
    +-- scenario_001/
    |   +-- group_labeled.png
    |   +-- individual/
    |       +-- character_01.jpg
    |       +-- character_02.jpg
    +-- ...
```

- `train.jsonl` is a viewer-friendly table with 240 AgentViSS records. It
  exposes key fields from `data.json` and keeps image path columns at the end.
- `data.json` contains the canonical full records.
- `images/` contains all image assets referenced by `data.json`.
- Image paths in `data.json` are package-relative. Resolve them from the
  dataset repository root.
- All images are resized proportionally so that the longest edge is at most
  512 pixels.

## Dataset Structure

Each record includes an anonymized scenario id, dialogue type, conflict level,
characters, role-level information, goals, emotions, and image paths.

The Hugging Face Dataset Viewer is configured to read `train.jsonl` rather than
the raw `images/` directory. This keeps the viewer organized around the 240
scenario records instead of displaying the 282 image files as separate rows.

Important image fields:

- `group_image_labeled`: path to the scenario-level group image.
- `individual_images`: mapping from character names to role portrait paths.

Example:

```json
{
  "id": "agentviss_low_01",
  "source_scenario": "scenario_001",
  "group_image_labeled": "images/scenario_001/group_labeled.png",
  "individual_images": {
    "CharacterName": "images/scenario_001/individual/character_01.jpg"
  }
}
```

The fields `base_json_path`, `group_image`, `background`, and
`individual_informations.*.personality` are not included in this public data
package.

## Download

Download the full dataset, including images, with `huggingface_hub`:

```python
import json
from pathlib import Path
from huggingface_hub import snapshot_download

root = Path(snapshot_download(
    repo_id="JunsWan/AgentViSS",
    repo_type="dataset",
))

records = json.loads((root / "data.json").read_text(encoding="utf-8"))
first_group_image = root / records[0]["group_image_labeled"]
```

For the flattened viewer table:

```python
import json
from pathlib import Path
from huggingface_hub import snapshot_download

root = Path(snapshot_download(
    repo_id="JunsWan/AgentViSS",
    repo_type="dataset",
))

with (root / "train.jsonl").open(encoding="utf-8") as f:
    rows = [json.loads(line) for line in f]
```

You can also clone the repository:

```bash
git clone https://huggingface.co/datasets/JunsWan/AgentViSS
```