JasonY159 commited on
Commit
7e1fd3e
·
verified ·
1 Parent(s): c26f223

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -14
README.md CHANGED
@@ -11,20 +11,22 @@ For more details, please refer to our [Offical Data Website](https://cyberorigin
11
  contents of train/val data:
12
  ```
13
  train # train dataset root folder
14
- └── 01/
15
- ├── metadata.json
16
- ├── segment_ids.bin # for each frame segment_ids[i] uniquely points to the segment index that frame i came from. You may want to use this to separate non-contiguous frames from different videos (transitions).
17
- ├── videos.bin # 16x16 image patches at 30hz, each patch is vector-quantized into 2^18 possible integer values. These can be decoded into 256x256 RGB images using the provided magvit2.ckpt weights.
18
- ├── ...
19
- └── 02/
20
- ├── ...
 
21
 
22
  val # val dataset root folder
23
- └── 01/
24
- ├── metadata.json
25
- ├── segment_ids.bin
26
- ├── videos.bin
27
- ├── ...
28
- └── 02/
29
- ├── ...
 
30
  ```
 
11
  contents of train/val data:
12
  ```
13
  train # train dataset root folder
14
+ └── ID1/
15
+ └── 2024-08-07/
16
+ ├── metadata.json
17
+ ├── segment_ids.bin # for each frame segment_ids[i] uniquely points to the segment index that frame i came from. You may want to use this to separate non-contiguous frames from different videos (transitions).
18
+ ├── videos.bin # 16x16 image patches at 30hz, each patch is vector-quantized into 2^18 possible integer values. These can be decoded into 256x256 RGB images using the provided magvit2.ckpt weights.
19
+ └── ID2/
20
+ └── 2024-08-08/
21
+ ├── ...
22
 
23
  val # val dataset root folder
24
+ └── ID1/
25
+ └── 2024-08-05/
26
+ ├── metadata.json
27
+ ├── segment_ids.bin
28
+ ├── videos.bin
29
+ └── ID2/
30
+ └── 2024-08-06/
31
+ ├── ...
32
  ```