Update README.md
Browse files
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 |
-
└──
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
└──
|
20 |
-
|
|
|
21 |
|
22 |
val # val dataset root folder
|
23 |
-
└──
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
└──
|
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 |
```
|