keentomato commited on
Commit
743c9a6
·
verified ·
1 Parent(s): ee1d0e5

Delete ReadMe.md

Browse files
Files changed (1) hide show
  1. ReadMe.md +0 -132
ReadMe.md DELETED
@@ -1,132 +0,0 @@
1
- ---
2
- pretty_name: Human Behavior Atlas (HBA)
3
- language:
4
- - en
5
- license: other
6
- task_categories:
7
- - text-classification
8
- - audio-classification
9
- - image-classification
10
- - video-classification
11
- - multimodal
12
- tags:
13
- - human-behavior
14
- - social-intelligence
15
- - multimodal
16
- - benchmarking
17
- - psychology
18
- - affective-computing
19
- - emotion-recognition
20
- - intent-recognition
21
- - sarcasm-detection
22
- - depression-detection
23
- - anxiety-detection
24
- - ptsd
25
- - nonverbal-behavior
26
- - pose-estimation
27
- - opensmile
28
- size_categories:
29
- - 100K<n<1M
30
- ---
31
-
32
- # Human Behavior Atlas (HBA)
33
-
34
- Human Behavior Atlas (HBA) is a **unified benchmark for multimodal behavioral understanding**.
35
- It aggregates and standardizes multiple behavioral datasets into a single training and evaluation framework, enabling consistent training and evaluation of foundation models on psychological and social behavior tasks (e.g., emotion, intent, sarcasm, mental health signals, nonverbal behavior).
36
-
37
- - **Dataset on Hugging Face:** https://huggingface.co/datasets/keentomato/human_behavior_atlas
38
- - **Official GitHub:** https://github.com/MIT-MI/human_behavior_atlas/tree/main
39
- - **Paper (ICLR 2026 Main Conference, accepted):** https://openreview.net/forum?id=ZKE23BBvlQ
40
-
41
- ---
42
-
43
- ## What’s inside
44
-
45
- When you download the dataset, you will find:
46
-
47
- ### 1) JSONL splits (centralized indices)
48
- These JSONL files sit at the **root level** and define all benchmark samples:
49
- - `final_v8_train_cleaned_2.jsonl` — training set
50
- - `final_v8_val_cleaned.jsonl` — validation set
51
- - `final_v8_test_cleaned.jsonl` — test set
52
-
53
- Each line is a **self-contained sample** that provides:
54
- - the **prompt** (problem statement),
55
- - the **ground-truth** answer/label,
56
- - pointers to any **raw media** (video/audio/text/image),
57
- - pointers to any **pre-extracted behavioral features** (`.pt`).
58
- - miscellaneous information such as the dataset, task, class label, modalities present (i.e. modality signature)
59
-
60
- ### 2) Raw media files
61
- Subdirectories contain the raw media referenced by each JSONL sample:
62
- - video / audio files
63
- - (optional) associated text files
64
-
65
- ### 3) Behavioral feature files (`.pt`)
66
- Pre-extracted features for common behavioral signals, such as:
67
- - pose features (video)
68
- - OpenSMILE features (audio)
69
- - (and other feature types included in the release)
70
-
71
- ---
72
-
73
- ## Data format
74
-
75
- HBA uses JSONL to provide a **unified sample schema** across heterogeneous source datasets.
76
- All file paths are **relative to the dataset root** (the same directory as the JSONL files).
77
-
78
- ### Example sample
79
- ```json
80
- {
81
- "problem": "<audio>\nDon't forget a jacket.\nThe 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",
82
- "answer": "sad",
83
- "images": [],
84
- "videos": [],
85
- "audios": ["cremad_dataset_audio/1077_DFA_SAD_XX.wav"],
86
- "dataset": "cremad",
87
- "texts": [],
88
- "modality_signature": "text_audio",
89
- "ext_video_feats": ["pose/cremad_dataset_audio/1077_DFA_SAD_XX.pt"],
90
- "ext_audio_feats": ["opensmile/cremad_dataset_audio/1077_DFA_SAD_XX.pt"],
91
- "task": "emotion_cls",
92
- "class_label": "sad"
93
- }
94
- ```
95
-
96
- ---
97
-
98
- # Field-Level Explanation
99
-
100
- ### Key fields:
101
-
102
- - **problem / answer** — the prompt and ground-truth label
103
- - **images, videos, audios, texts** — relative paths to raw media files
104
- - **ext_video_feats, ext_audio_feats** — relative paths to pre-extracted behavioral feature files (.pt)
105
- - **modality_signature** — indicates which modalities are present (e.g., text_audio, video, text_video)
106
- - **dataset** — source dataset name
107
- - **task / class_label** — behavioral task type and label
108
-
109
- ### Detailed explanation:
110
-
111
- - `problem`: The full prompt presented to the model. May contain modality markers such as `<audio>` or `<video>` and includes the task instruction.
112
- - `answer`: The ground-truth label expected during evaluation.
113
- - `images`, `videos`, `audios`, `texts`: Lists of relative paths to raw media files stored in subdirectories under the dataset root. Empty lists indicate that the modality is not present.
114
- - `ext_video_feats`, `ext_audio_feats`: Lists of relative paths to pre-extracted behavioral feature tensors (`.pt` files), also stored in subdirectories under the dataset root.
115
- - `modality_signature`: A compact indicator of which modalities are present for the sample (e.g., `text_audio`, `video`, `text_video`).
116
- - `dataset`: The original source dataset name (e.g., `cremad`), enabling provenance tracking.
117
- - `task`: High-level behavioral task identifier (e.g., `emotion_cls`).
118
- - `class_label`: Canonical ground-truth class associated with the sample.
119
-
120
- The dataloader uses this JSONL as the centralized index to locate and load all raw media and feature files for each sample into the model.
121
-
122
- ---
123
-
124
- # Data Loading Workflow
125
-
126
- 1. Read a JSONL entry.
127
- 2. Parse `problem`, `task`, and `class_label`.
128
- 3. Load raw media using relative paths.
129
- 4. Optionally load `.pt` behavioral feature tensors.
130
- 5. Construct the multimodal sample for training or evaluation.
131
-
132
- This unified indexing structure enables heterogeneous behavioral datasets to be standardized under a single multimodal evaluation framework.