Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,33 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
|
6 |
+
## CyberOrigin Dataset
|
7 |
+
|
8 |
+
Our data includes information from home services, the logistics industry, and laboratory scenarios.
|
9 |
+
For more details, please refer to our [Offical Data Website](https://cyberorigin2077.github.io/)
|
10 |
+
|
11 |
+
contents of dataset:
|
12 |
+
```
|
13 |
+
cyber_fold_towels # dataset root path
|
14 |
+
└── data/
|
15 |
+
├── metadata_ID1_240808.json
|
16 |
+
├── 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).
|
17 |
+
├── 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.
|
18 |
+
├── ...
|
19 |
+
└── ...
|
20 |
+
```
|
21 |
+
|
22 |
+
[meta.json](meta.json)
|
23 |
+
```json
|
24 |
+
{
|
25 |
+
"task": "cyber_fold_towels",
|
26 |
+
"robot_type": "unknown",
|
27 |
+
"total_episodes": 1250,
|
28 |
+
"total_frames": 473899,
|
29 |
+
"token_dtype": "uint32",
|
30 |
+
"vocab_size": 262144,
|
31 |
+
"hz": 30
|
32 |
+
}
|
33 |
+
```
|