arkimjh commited on
Commit
2e97727
·
verified ·
1 Parent(s): f6f83a1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - video-text-to-text
5
+ - visual-question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - video
10
+ - social-interaction
11
+ - benchmark
12
+ - multi-person
13
+ - gaze
14
+ - gesture-recognition
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # Social Benchmark Dataset
20
+
21
+ ## Description
22
+
23
+ Social Benchmark is a video-based social understanding benchmark dataset containing **6,433 video clips** from 3 evaluation sets: MMSI, Online-MMSI, and original TVQA+. Each benchmark tests different aspects of social reasoning in multi-person video scenarios.
24
+
25
+ ## Dataset Statistics
26
+
27
+ | Benchmark | Videos | Size | JSON Files |
28
+ |-----------|--------|------|------------|
29
+ | MMSI | 1,708 | ~377 MB | 3 (mpp, pcr, sti) |
30
+ | Online-MMSI | 1,708 | ~2.9 GB | 3 (mpp, pcr, sti) |
31
+ | original TVQA+ | 3,017 | ~540 MB | 1 (eval) |
32
+ | **Total** | **6,433** | **~3.8 GB** | **7** |
33
+
34
+ ## Benchmark Tasks
35
+
36
+ - **MPP** (Multi-Person Prediction): Predict social behaviors of multiple persons
37
+ - **PCR** (Person-Centric Reasoning): Reason about individual person's social role
38
+ - **STI** (Social Temporal Inference): Infer social dynamics over time
39
+ - **TVQA+**: Video question answering with spatial-temporal grounding
40
+
41
+ ## Dataset Structure
42
+
43
+ ```
44
+ social-benchmark/
45
+ ├── json/
46
+ │ ├── mmsi_test_mpp_original.json
47
+ │ ├── mmsi_test_pcr_original.json
48
+ │ ├── mmsi_test_sti_original.json
49
+ │ ├── online_mmsi_test_mpp_extended.json
50
+ │ ├── online_mmsi_test_pcr_extended.json
51
+ │ ├── online_mmsi_test_sti_extended.json
52
+ │ └── tvqa_plus_eval.json
53
+ └── tars/
54
+ ├── mmsi_videos_part001.tar
55
+ ├── online_mmsi_videos_part001.tar
56
+ └── original_tvqa_plus_videos_part001.tar
57
+ ```
58
+
59
+ ## Usage
60
+
61
+ ```python
62
+ from huggingface_hub import snapshot_download
63
+
64
+ # Download everything
65
+ snapshot_download(
66
+ repo_id="arkimjh/social-benchmark",
67
+ repo_type="dataset",
68
+ local_dir="./social-benchmark"
69
+ )
70
+
71
+ # Extract video archives
72
+ import tarfile
73
+ from pathlib import Path
74
+
75
+ for tar_file in Path("./social-benchmark/tars").glob("*.tar"):
76
+ with tarfile.open(tar_file) as tf:
77
+ tf.extractall("./social-benchmark/videos/")
78
+ ```
79
+
80
+ ## Data Sources
81
+
82
+ - **MMSI**: Multi-Modal Social Interaction benchmark (offline setting, original videos)
83
+ - **Online-MMSI**: Multi-Modal Social Interaction benchmark (online setting, original videos)
84
+ - **original TVQA+**: TV show QA with compositional spatio-temporal grounding (original videos)
85
+
86
+ ## Citation
87
+
88
+ TBD