dhuser commited on
Commit
7f4cc6c
·
verified ·
1 Parent(s): d3d46a7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +136 -0
README.md ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - feature-extraction
7
+ - audio-classification
8
+ - video-classification
9
+ tags:
10
+ - humor
11
+ - stand-up-comedy
12
+ - multimodal
13
+ - alignment
14
+ - laughter-detection
15
+ - pose-estimation
16
+ - shot-detection
17
+ - topic-modeling
18
+ pretty_name: "TIC-TALK (Timing In stand-up Comedy: Text, Audio, Laughter, Kinesics)"
19
+ size_categories:
20
+ - 1K<n<10K
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: unified_humor_dataset_v2.parquet
26
+ ---
27
+
28
+ # TIC-TALK — Timing In stand-up Comedy: Text, Audio, Laughter, Kinesics
29
+
30
+ Time-aligned text, audio, and vision features from 90 stand-up specials
31
+ (2015–2024). Show identities are anonymized (`SHOW_XXXX`); no source audio,
32
+ video, or transcripts are distributed.
33
+
34
+ Dataset contains:
35
+
36
+ | | |
37
+ |---|---|
38
+ | Shows | 90 |
39
+ | Total runtime | ≈ 94 h (mean 63 min / show) |
40
+ | Rows (60 s blocks) | 5 416 |
41
+ | Topics (BERTopic) | 24 |
42
+ | Video frames (1 fps) | 322 973 (22 % full-body) |
43
+ | Laughter coverage (mean) | 17.8 % of block duration, ≈ 1.2 events / 10 s |
44
+ | Embedding dim | 384 |
45
+ | File | single Parquet, 44 MB (zstd) |
46
+
47
+ ## Loading
48
+
49
+ Single split named `train`
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+ ds = load_dataset("ENC-PSL/TIC-TALK", split="train")
54
+ ```
55
+
56
+ ## Schema (1 row = 1 block)
57
+
58
+ | field | type | description |
59
+ |---|---|---|
60
+ | `show_id` | string | `SHOW_0001`…`SHOW_0090` |
61
+ | `block_id` | int32 | block index within the show |
62
+ | `start`, `end` | float32 | block window, seconds from show start |
63
+ | `topic_id` | int32 | BERTopic id (24 topics, `-1` = outlier) |
64
+ | `embedding` | float32[384] | sentence-BERT embedding of block text |
65
+ | `laugh_events` | list&lt;struct&gt; | `start`, `end`, `type`, `confidence` |
66
+ | `pose_keypoints` | list&lt;struct&gt; | `time`, `has_detection`, `bbox_*`, `keypoints[17][2]` (COCO-17 order, `[x,y]` in pixels) |
67
+ | `shot_events` | list&lt;struct&gt; | `time`, `label`, `class_id`, `score` |
68
+ | `show_duration_sec`, `show_n_blocks` | float32 / int32 | show-level |
69
+ | `show_has_laugh` / `_pose` / `_shots` | bool | modality flags |
70
+ | `topic_show_id` | string | per-show topic model id |
71
+
72
+ Shot labels: `full_shot`, `medium_close-up`, `medium_long_shot`,
73
+ `medium_shot`, `other_angles`, `other` (6 classes, average F1 = 0.91).
74
+
75
+ All timestamps are in seconds on the same absolute axis (from show start).
76
+ Block assignment is by event start: `pose_keypoints[i].time`,
77
+ `shot_events[i].time`, `laugh_events[i].start` ∈ `[start, end)`; a
78
+ `laugh_events[i].end` may extend ≤ 0.8 s past `end` (Whisper-AT stride).
79
+
80
+ ## Example
81
+
82
+ ```python
83
+ from datasets import load_dataset
84
+ ds = load_dataset("ENC-PSL/TIC-TALK", split="train")
85
+
86
+ def pose_near(row, t, window=1.0):
87
+ return [p for p in row["pose_keypoints"]
88
+ if p["has_detection"] and abs(p["time"] - t) <= window]
89
+
90
+ for row in ds:
91
+ for ev in row["laugh_events"]:
92
+ poses_at_onset = pose_near(row, ev["start"])
93
+ # ... features at laughter onset
94
+ ```
95
+
96
+ ## Provenance
97
+
98
+ Derived features only (no source media is redistributed).
99
+
100
+ - **Text / topics**: subtitle-derived 60 s blocks, sentence-BERT
101
+ `sentence-transformers/all-MiniLM-L6-v2` (384-dim), BERTopic with UMAP
102
+ (`n_neighbors=15`, `n_components=5`, `min_dist=0.1`) + HDBSCAN
103
+ (`min_cluster_size=15`, `min_samples=5`), 24 topics.
104
+ - **Laughter**: Whisper-AT (AudioSet audio tagging), 0.8 s stride,
105
+ high-recall configuration; contiguous positive windows merged into events.
106
+ - **Pose**: YOLOv8s-pose (pretrained), 17-keypoint output in canonical COCO
107
+ order, 1 fps, restricted to full-body / frontal frames.
108
+ - **Shot**: YOLOv8-cls fine-tuned on 594 manually annotated frames
109
+ (val on 128 held-out frames, average F1 = 0.91), 1 fps.
110
+
111
+ ## License
112
+
113
+ CC-BY-NC-4.0 for research use. Underlying audiovisual material remains the
114
+ property of its rights holders; only derived features are distributed.
115
+
116
+ ## How to cite
117
+
118
+ Paper accepted for the 2nd Workshop on Computational Humor (CHum 2026) @ACL 2026.
119
+
120
+ Preprint :
121
+
122
+ ```bibtex
123
+ @misc{zribi2026timingstandupcomedytext,
124
+ title={Timing In stand-up Comedy: Text, Audio, Laughter, Kinesics (TIC-TALK): Pipeline and Database for the Multimodal Study of Comedic Timing},
125
+ author={Yaelle Zribi and Florian Cafiero and Vincent Lépinay and Chahan Vidal-Gorène},
126
+ year={2026},
127
+ eprint={2603.21803},
128
+ archivePrefix={arXiv},
129
+ primaryClass={cs.CV},
130
+ url={https://arxiv.org/abs/2603.21803},
131
+ }
132
+ ```
133
+
134
+ ## Acknowledgements
135
+
136
+ This study was conducted as part of the DH master’s program at École nationale des chartes–PSL (Yaelle Zribi master thesis) and with the support of the PSL Research University’s Major Research Program CultureLab, implemented by the ANR (reference ANR-10-IDEX-0001).