Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,28 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
|
6 |
+
## CyberOrigin Dataset
|
7 |
+
|
8 |
+
|
9 |
+
contents of train/val data:
|
10 |
+
```
|
11 |
+
train # train dataset root folder
|
12 |
+
└── 01/
|
13 |
+
├── metadata.json
|
14 |
+
├── 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).
|
15 |
+
├── 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.
|
16 |
+
├── ...
|
17 |
+
└── 02/
|
18 |
+
├── ...
|
19 |
+
|
20 |
+
val # val dataset root folder
|
21 |
+
└── 01/
|
22 |
+
├── metadata.json
|
23 |
+
├── segment_ids.bin
|
24 |
+
├── videos.bin
|
25 |
+
├── ...
|
26 |
+
└── 02/
|
27 |
+
├── ...
|
28 |
+
```
|