File size: 1,196 Bytes
87a77f6 cb66b46 e423581 9a24967 87a77f6 cb66b46 87a77f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
---
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 dataset:
```
cyber_take_the_item # dataset root path
└── data/
├── metadata_ID1_240808.json
├── segment_ids_ID1_240808.bin # for each frame segment_ids 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_ID1_240808.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.
├── ...
└── ...
```
```json
{
"task": "Take the Item",
"total_episodes": 18779,
"total_frames": 11982851,
"token_dtype": "uint32",
"vocab_size": 262144,
"fps": 30,
"manipulation_type": "Single Arm",
"language_annotation": "None",
"scene_type": "Table Top",
"data_collect_method": "Directly Collection on Human"
}
``` |