Jingkang commited on
Commit
4d221e9
1 Parent(s): 4bb0362

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md CHANGED
@@ -1,3 +1,55 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ We carefully collect 400 videos, each featuring dynamic scenes and rich in logical reasoning content. On average, these videos are 76.5 seconds long (5 FPS). The collection comprises 289 videos from VidOR, 55 videos from EpicKitchen, and 56 videos from Ego4D.
6
+
7
+ Please `git clone` https://github.com/LilyDaytoy/OpenPVSG and organize your files according to the structure below.
8
+
9
+ You can put the HF dataset in `data_zip` directory.
10
+
11
+ ```
12
+ ├── assets
13
+ ├── checkpoints
14
+ ├── configs
15
+ ├── data
16
+ ├── data_zip
17
+ │ ├── Ego4D
18
+ │ │ ├── ego4d_masks.zip
19
+ │ │ └── ego4d_videos.zip
20
+ │ ├── EpicKitchen
21
+ │ │ ├── epic_kitchen_masks.zip
22
+ │ │ └── epic_kitchen_videos.zip
23
+ │ ├── VidOR
24
+ │ │ ├── vidor_masks.zip
25
+ │ │ └── vidor_videos.zip
26
+ │ └── pvsg.json
27
+ ├── datasets
28
+ ├── models
29
+ ├── scripts
30
+ ├── tools
31
+ ├── utils
32
+ ├── .gitignore
33
+ ├── environment.yml
34
+ └── README.md
35
+ ```
36
+
37
+ Please run unzip_and_extract.py to unzip the files and extract frames from the videos. If you use zip, make sure to use `unzip -j xxx.zip` to remove junk paths. You should have your data directory looks like this:
38
+
39
+ ```
40
+ data
41
+ ├── ego4d
42
+ │ ├── frames
43
+ │ ├── masks
44
+ │ └── videos
45
+ ├── epic_kitchen
46
+ │ ├── frames
47
+ │ ├── masks
48
+ │ └── videos
49
+ ├── vidor
50
+ │ ├── frames
51
+ │ ├── masks
52
+ │ └── videos
53
+ └── pvsg.json
54
+ ```
55
+ We suggest our users to play with `./notebooks/Visualize_Dataset.ipynb` to quickly get familiar with PSG dataset.