Link OmniSapiens paper, update task categories and improve metadata

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +94 -124
README.md CHANGED
@@ -1,78 +1,85 @@
1
  ---
 
 
 
2
  license: cc-by-nc-4.0
 
 
3
  task_categories:
4
- - video-classification
5
- - audio-classification
6
- - text-classification
7
- - question-answering
8
- - visual-question-answering
9
- language:
10
- - en
11
- - zh
12
- tags:
13
- - multimodal
14
- - emotion-recognition
15
- - sentiment-analysis
16
- - humor-detection
17
- - mental-health
18
- - video-qa
19
- - reinforcement-learning
20
- - verl
21
- - rl-training
22
- - qwen2.5-omni
23
- - audio
24
- - video
25
- - pose-estimation
26
- - opensmile
27
  pretty_name: Human Behavior Atlas v2
28
- arxiv: 2510.04899
29
- size_categories:
30
- - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
31
  configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: train-*.parquet
36
- - split: validation
37
- path: validation-*.parquet
38
- - split: test
39
- path: test-*.parquet
40
  dataset_info:
41
  features:
42
- - name: problem
43
- dtype: string
44
- - name: answer
45
- dtype: string
46
- - name: images
47
- sequence: binary
48
- - name: videos
49
- sequence: binary
50
- - name: audios
51
- sequence: binary
52
- - name: dataset
53
- dtype: string
54
- - name: modality_signature
55
- dtype: string
56
- - name: ext_video_feats
57
- sequence: binary
58
- - name: ext_audio_feats
59
- sequence: binary
60
- - name: task
61
- dtype: string
62
- - name: class_label
63
- dtype: string
64
  splits:
65
- - name: train
66
- num_examples: 74449
67
- - name: validation
68
- num_examples: 7646
69
- - name: test
70
- num_examples: 18204
71
  ---
72
 
73
  # Human Behavior Atlas
74
 
75
- A large-scale multimodal dataset for human behavior understanding, spanning emotion recognition, sentiment analysis, humor detection, mental health screening, and video question answering. The dataset integrates 16 source datasets into a unified schema with audio, video, and pre-extracted features, designed for reinforcement learning training with the [verl](https://github.com/volcengine/verl) framework and multimodal language models such as Qwen2.5-Omni-7B.
 
 
 
 
 
 
 
76
 
77
  ## Dataset Summary
78
 
@@ -146,19 +153,6 @@ Each row in the Parquet files contains the following columns:
146
  | `task` | string | Task type identifier |
147
  | `class_label` | string | Classification label |
148
 
149
- ## Repository Structure
150
-
151
- ```
152
- HumanBehaviorAtlas/human_behavior_atlas/
153
- train-00000-of-XXXXX.parquet # Sharded parquet with embedded audio/video
154
- train-00001-of-XXXXX.parquet
155
- ...
156
- validation-*.parquet
157
- test-*.parquet
158
- ```
159
-
160
- All data — including audio, video, and pre-extracted features — is fully embedded in the parquet files. No separate downloads or extraction needed.
161
-
162
  ## Usage
163
 
164
  ### Loading with HuggingFace Datasets
@@ -172,9 +166,6 @@ sample = next(iter(ds))
172
 
173
  # Load a subset
174
  ds_100 = load_dataset("HumanBehaviorAtlas/human_behavior_atlas", split="train[:100]")
175
-
176
- # Filter by task or modality
177
- emotion_ds = ds_100.filter(lambda x: x["task"] == "emotion_cls")
178
  ```
179
 
180
  ### Accessing Embedded Media
@@ -192,46 +183,28 @@ if sample["audios"]:
192
  # Video is raw bytes — decode with decord, opencv, or write to temp file
193
  if sample["videos"]:
194
  video_bytes = sample["videos"][0]
195
- # e.g., with decord:
196
- # from decord import VideoReader
197
- # vr = VideoReader(io.BytesIO(video_bytes))
198
  ```
199
 
200
- ### Download and Setup
201
-
202
- ```bash
203
- # Download full dataset
204
- huggingface-cli download HumanBehaviorAtlas/human_behavior_atlas \
205
- --repo-type dataset --local-dir /path/to/data
206
-
207
- # Or download specific splits only
208
- huggingface-cli download HumanBehaviorAtlas/human_behavior_atlas \
209
- --repo-type dataset --local-dir /path/to/data \
210
- --include "train-*.parquet"
211
- ```
212
-
213
- ### Integration with verl RL Training
214
-
215
- This dataset is designed for RL training with [verl](https://github.com/volcengine/verl) using Qwen2.5-Omni-7B. The `problem` field contains structured prompts with `<audio>` and `<video>` modality markers. Audio and video bytes are loaded directly from parquet — no path resolution needed.
216
-
217
- All data including feature tensors is embedded directly in the parquet files.
218
-
219
- ```bash
220
- # verl training config
221
- python3 -m verl.trainer.main_ppo \
222
- data.train_files=/path/to/data/train-*.parquet \
223
- data.val_files=/path/to/data/validation-*.parquet \
224
- data.prompt_key=problem \
225
- data.image_key=images \
226
- data.video_key=videos \
227
- data.modalities='audio,videos' \
228
- ...
229
  ```
230
 
231
  ## Citation
232
 
233
- If you use this dataset, please cite the following paper:
234
-
235
  ```bibtex
236
  @inproceedings{
237
  ong2026human,
@@ -241,18 +214,15 @@ booktitle={The Fourteenth International Conference on Learning Representations},
241
  year={2026},
242
  url={https://openreview.net/forum?id=ZKE23BBvlQ}
243
  }
244
- ```
245
-
246
- > Keane Ong, Wei Dai, Carol Li, Dewei Feng, Hengzhi Li, Jingyao Wu, Jiaee Cheong, Rui Mao, Gianmarco Mengaldo, Erik Cambria, Paul Pu Liang. "Human Behavior Atlas: Benchmarking Unified Psychological and Social Behavior Understanding." ICLR 2026. [Paper](https://openreview.net/pdf?id=ZKE23BBvlQ)
247
 
248
- Please also cite the individual source datasets as appropriate:
249
-
250
- - CMU-MOSEI: Zadeh et al., "Multimodal Language Analysis in the Wild: CMU-MOSEI Dataset and Interpretable Dynamic Fusion Graph", ACL 2018
251
- - MELD: Poria et al., "MELD: A Multimodal Multi-Party Dataset for Emotion Recognition in Conversations", ACL 2019
252
- - CREMA-D: Cao et al., "CREMA-D: Crowd-Sourced Emotional Multimodal Actors Dataset", IEEE TAC 2014
253
- - DAIC-WOZ: Gratch et al., "The Distress Analysis Interview Corpus of Human and Computer Interviews", LREC 2014
254
- - CH-SIMS v2: Liu et al., "Make Acoustic and Visual Cues Matter: CH-SIMS v2.0 Dataset and AV-Mixup Consistent Module", ICMI 2022
255
 
256
  ## License
257
 
258
- This dataset is released under the [Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/) license. Individual source datasets may have their own licensing terms; please consult the original dataset publications for details.
 
1
  ---
2
+ language:
3
+ - en
4
+ - zh
5
  license: cc-by-nc-4.0
6
+ size_categories:
7
+ - 10K<n<100K
8
  task_categories:
9
+ - video-classification
10
+ - audio-classification
11
+ - text-classification
12
+ - question-answering
13
+ - visual-question-answering
14
+ - any-to-any
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  pretty_name: Human Behavior Atlas v2
16
+ tags:
17
+ - multimodal
18
+ - emotion-recognition
19
+ - sentiment-analysis
20
+ - humor-detection
21
+ - mental-health
22
+ - video-qa
23
+ - reinforcement-learning
24
+ - verl
25
+ - rl-training
26
+ - qwen2.5-omni
27
+ - audio
28
+ - video
29
+ - pose-estimation
30
+ - opensmile
31
  configs:
32
+ - config_name: default
33
+ data_files:
34
+ - split: train
35
+ path: train-*.parquet
36
+ - split: validation
37
+ path: validation-*.parquet
38
+ - split: test
39
+ path: test-*.parquet
40
  dataset_info:
41
  features:
42
+ - name: problem
43
+ dtype: string
44
+ - name: answer
45
+ dtype: string
46
+ - name: images
47
+ sequence: binary
48
+ - name: videos
49
+ sequence: binary
50
+ - name: audios
51
+ sequence: binary
52
+ - name: dataset
53
+ dtype: string
54
+ - name: modality_signature
55
+ dtype: string
56
+ - name: ext_video_feats
57
+ sequence: binary
58
+ - name: ext_audio_feats
59
+ sequence: binary
60
+ - name: task
61
+ dtype: string
62
+ - name: class_label
63
+ dtype: string
64
  splits:
65
+ - name: train
66
+ num_examples: 74449
67
+ - name: validation
68
+ num_examples: 7646
69
+ - name: test
70
+ num_examples: 18204
71
  ---
72
 
73
  # Human Behavior Atlas
74
 
75
+ A large-scale multimodal dataset for human behavior understanding, spanning emotion recognition, sentiment analysis, humor detection, mental health screening, and video question answering. The dataset integrates 16 source datasets into a unified schema with audio, video, and pre-extracted features.
76
+
77
+ This dataset was used to train **OmniSapiens**, a foundation model for social behavior processing.
78
+
79
+ - **Papers:**
80
+ - [Human Behavior Atlas: Benchmarking Unified Psychological and Social Behavior Understanding (ICLR 2026)](https://arxiv.org/abs/2510.04899)
81
+ - [OmniSapiens: A Foundation Model for Social Behavior Processing via Heterogeneity-Aware Relative Policy Optimization (ICML 2026)](https://huggingface.co/papers/2602.10635)
82
+ - **Repository:** [https://github.com/MIT-MI/human_behavior_atlas](https://github.com/MIT-MI/human_behavior_atlas)
83
 
84
  ## Dataset Summary
85
 
 
153
  | `task` | string | Task type identifier |
154
  | `class_label` | string | Classification label |
155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  ## Usage
157
 
158
  ### Loading with HuggingFace Datasets
 
166
 
167
  # Load a subset
168
  ds_100 = load_dataset("HumanBehaviorAtlas/human_behavior_atlas", split="train[:100]")
 
 
 
169
  ```
170
 
171
  ### Accessing Embedded Media
 
183
  # Video is raw bytes — decode with decord, opencv, or write to temp file
184
  if sample["videos"]:
185
  video_bytes = sample["videos"][0]
 
 
 
186
  ```
187
 
188
+ ### Example Entry
189
+
190
+ ```json
191
+ {
192
+ "problem": "<audio>
193
+ Don't forget a jacket.
194
+ The above is a speech recording along with the transcript from a clinical context. What emotion is the speaker expressing? Answer with one word from the following: anger, disgust, fear, happy, neutral, sad",
195
+ "answer": "sad",
196
+ "images": [],
197
+ "videos": [],
198
+ "audios": ["..."],
199
+ "dataset": "cremad",
200
+ "modality_signature": "text_audio",
201
+ "task": "emotion_cls",
202
+ "class_label": "sad"
203
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  ```
205
 
206
  ## Citation
207
 
 
 
208
  ```bibtex
209
  @inproceedings{
210
  ong2026human,
 
214
  year={2026},
215
  url={https://openreview.net/forum?id=ZKE23BBvlQ}
216
  }
 
 
 
217
 
218
+ @article{ong2026omnisapiens,
219
+ title={Omnisapiens: A foundation model for social behavior processing via heterogeneity-aware relative policy optimization},
220
+ author={Ong, Keane and Boughorbel, Sabri and Xiao, Luwei and Ekbote, Chanakya and Dai, Wei and Qu, Ao and Wu, Jingyao and Mao, Rui and Hoque, Ehsan and Cambria, Erik and others},
221
+ journal={arXiv preprint arXiv:2602.10635},
222
+ year={2026}
223
+ }
224
+ ```
225
 
226
  ## License
227
 
228
+ This dataset is released under the [Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/) license. Individual source datasets may have their own licensing terms.