Add dataset card, paper link, and GitHub repository for CrashChat

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - video-text-to-text
4
+ language:
5
+ - en
6
+ tags:
7
+ - traffic-safety
8
+ - autonomous-driving
9
+ - video-analysis
10
+ - crash-analysis
11
+ - video-understanding
12
+ ---
13
+
14
+ # CrashChat Dataset
15
+
16
+ [**Paper**](https://huggingface.co/papers/2512.18878) | [**Code**](https://github.com/Liangkd/CrashChat)
17
+
18
+ CrashChat is an instruction-tuning crash video dataset specifically designed for multitask traffic crash video analysis. It was developed to train the CrashChat Multimodal Large Language Model (MLLM), enabling automated crash recognition, temporal grounding, and high-level reasoning for traffic safety research.
19
+
20
+ ## Dataset Summary
21
+
22
+ The dataset encompasses six core tasks related to traffic accident analysis:
23
+ 1. **Crash Recognition**: Identifying if a crash occurred.
24
+ 2. **Crash Description**: Providing a textual narrative of the event.
25
+ 3. **Causal Reasoning**: Explaining why the crash occurred.
26
+ 4. **Prevention Reasoning**: Suggesting how the crash could have been avoided.
27
+ 5. **Pre-crash Localization**: Identifying the temporal window leading up to the crash.
28
+ 6. **Crash Localization**: Grounding the exact timing of the crash event.
29
+
30
+ ### Key Statistics
31
+ - **Total Videos**: 18,385
32
+ - **Total Video-QA Pairs**: 96,184
33
+
34
+ ## Data Structure
35
+
36
+ According to the official repository, the video data and annotation files are organized as follows:
37
+
38
+ ```bash
39
+ data
40
+ β”œβ”€β”€ videos
41
+ β”‚ β”œβ”€β”€ cap_1_001537.mp4
42
+ β”‚ β”œβ”€β”€ cap_1_002004.mp4
43
+ β”‚ └── ...
44
+ β”œβ”€β”€ crashchat_dada_video_total_cause_reasoning_test.json
45
+ β”œβ”€β”€ crashchat_dada_video_total_cause_reasoning_train.json
46
+ β”œβ”€β”€ ...
47
+ └── crashchat_dada_video_total_prevention_reasoning_val.json
48
+ ```
49
+
50
+ ## Citation
51
+
52
+ If you find CrashChat useful for your research, please cite the following paper:
53
+
54
+ ```bibtex
55
+ @article{liang2025crashchat,
56
+ title = {CrashChat: A Multimodal Large Language Model for Multitask Traffic Crash Video Analysis},
57
+ author = {Liang, Kaidi and Li, Ke and Hu, Xianbiao and Qin, Ruwen},
58
+ journal = {arXiv preprint arXiv:2512.18878},
59
+ year = {2025},
60
+ archivePrefix = {arXiv},
61
+ eprint = {2512.18878},
62
+ primaryClass = {cs.CV},
63
+ url = {https://arxiv.org/abs/2512.18878}
64
+ }
65
+ ```