CollisionCode commited on
Commit
946f41a
·
verified ·
1 Parent(s): 7b485b7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -3
README.md CHANGED
@@ -1,9 +1,59 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
4
  # 📦 RoboCerebra HDF5 Dataset
5
 
6
- ⚠️ **IMPORTANT: Dataset Upload in Progress**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
- The dataset in this repository is currently **incomplete**. Large-scale data files are actively being uploaded in batches.
9
- To ensure data consistency and integrity, **please do not download or use the partial data for experiments at this time**.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
  # 📦 RoboCerebra HDF5 Dataset
6
 
7
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
8
+ [![Project Page](https://img.shields.io/badge/Project-RoboCerebra-green)](https://github.com/qiuboxiang/RoboCerebra)
9
+
10
+ This repository contains the structured **HDF5 dataset** for the **RoboCerebra** project, optimized for high-performance robot learning training.
11
+
12
+ **✅ Status: Data Upload Complete.** All large-scale data files are now available for full download and experimental use.
13
+
14
+ ---
15
+
16
+ ## 📖 Data Source
17
+
18
+ The dataset is derived from the [**RoboCerebra-Bench**](https://github.com/qiuboxiang/RoboCerebra) raw collection.
19
+ * **Content**: Humanoid robotic manipulation demonstrations across various complex environments and tasks.
20
+ * **Structure**: Raw trajectory data has been processed and unified into a standard HDF5 format, enabling fast random access and efficient data loading during training.
21
+
22
+ ---
23
+
24
+ ## 📖 Data Source
25
+
26
+ The dataset is derived from the [**RoboCerebra-Bench**](https://github.com/qiuboxiang/RoboCerebra) raw collection.
27
+ * **Content**: Humanoid robotic manipulation demonstrations across various complex environments and tasks.
28
+ * **Structure**: Raw trajectory data has been processed and unified into a standard HDF5 format, enabling fast random access and efficient data loading during training.
29
 
30
+ ---
31
+
32
+ ## 🛠️ Data Conversion Script
33
+
34
+ The HDF5 files in this repository were converted from the official raw dataset [**qiukingballball/RoboCerebraBench**](https://huggingface.co/datasets/qiukingballball/RoboCerebraBench) using the processing scripts provided in the official **RoboCerebra** repository.
35
+
36
+ If you need to regenerate the HDF5 files or process custom data subsets, please follow the instructions from the official source:
37
+
38
+ 1. **Clone the official conversion tool**:
39
+ Visit [github.com/qiuboxiang/RoboCerebra](https://github.com/qiuboxiang/RoboCerebra) to get the latest scripts.
40
+
41
+ 2. **Navigate to the builder directory**:
42
+ ```bash
43
+ cd rlds_dataset_builder/
44
+ ```
45
+
46
+ 3. **Run the conversion script**:
47
+ Ensure the `--robocerebra_raw_data_dir` points to your local copy of the `RoboCerebraBench` raw data.
48
+
49
+ ```bash
50
+ python regenerate_robocerebra_dataset.py \
51
+ --robocerebra_raw_data_dir "/path/to/RoboCerebraBench/Ideal" \
52
+ --robocerebra_target_dir "./converted_hdf5/robocerebra_ideal"
53
+ ```
54
+
55
+ ### Argument Descriptions
56
+ * `--robocerebra_raw_data_dir`: Root directory containing the raw demonstration data from `qiukingballball/RoboCerebraBench`.
57
+ * `--robocerebra_target_dir`: Target path for the output HDF5 files.
58
+
59
+ ---