CyberDataset / README.md
JasonY159's picture
Update README.md
a78625a verified
|
raw
history blame
1.04 kB
---
license: mit
---
## CyberOrigin Dataset
Our data includes information from home services, the logistics industry, and laboratory scenarios.
For more details, please refer to our [Offical Data Website](https://cyberorigin2077.github.io/)
contents of train/val data:
```
train # train dataset root folder
└── 01/
├── metadata.json
├── 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).
├── 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.
├── ...
└── 02/
├── ...
val # val dataset root folder
└── 01/
├── metadata.json
├── segment_ids.bin
├── videos.bin
├── ...
└── 02/
├── ...
```