JeffreyChou commited on
Commit
216a458
Β·
verified Β·
1 Parent(s): 013b91c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -3
README.md CHANGED
@@ -1,3 +1,47 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ ---
4
+ Here is the dataset repo of paper "Abductive Ego-View Accident Video Understanding for Safe Driving Perception"
5
+
6
+ The Github repo: [Link](https://github.com/jeffreychou777/LOTVS-MM-AU)
7
+
8
+ Due to the large amount of data, chunked compression is used before uploading.
9
+
10
+ After downloading the data, You need to merge the files before extracting them.
11
+
12
+ ```
13
+ #Take DADA2000 as an example
14
+
15
+ cd DADA-2000_chunks
16
+ cat DADA2000.part_* > DADA2000.tar.gz
17
+ tar -xzvf large_file.tar.gz
18
+
19
+ ```
20
+
21
+ After decompression, please make the file structured as following:
22
+ ```
23
+ MM-AU # root of your MM-AU
24
+ β”œβ”€β”€ CAP-DATA
25
+ β”‚ β”œβ”€β”€ 1-10
26
+ β”‚ β”œβ”€β”€ 1
27
+ β”‚ β”œβ”€β”€ 001537/images
28
+ β”‚ β”œβ”€β”€ 000001.jpg
29
+ β”‚ β”œβ”€β”€ ......
30
+ β”‚ β”œβ”€β”€ 2
31
+ β”‚ β”œβ”€β”€ ......
32
+ β”‚ β”œβ”€β”€ 10
33
+ β”‚ β”œβ”€β”€ 11
34
+ β”‚ β”œβ”€β”€ 12-42
35
+ β”‚ β”œβ”€β”€ 43
36
+ β”‚ β”œβ”€β”€ 44-62
37
+ β”‚ β”œβ”€β”€ cap_text_annotations.xls
38
+ β”œβ”€β”€ DADA-DATA
39
+ β”‚ β”œβ”€β”€ 1
40
+ β”‚ β”œβ”€β”€ 001/images
41
+ β”‚ β”œβ”€β”€ 0001.png
42
+ β”‚ β”œβ”€β”€ ......
43
+ β”‚ β”œβ”€β”€ 2
44
+ β”‚ β”œβ”€β”€ ......
45
+ β”‚ β”œβ”€β”€ 61
46
+ β”‚ β”œβ”€β”€ dada_text_annotations.xlsx
47
+ ```