update readme

This commit is contained in:
hengguo
2025-09-23 16:57:54 +08:00
parent 50e8c3ed55
commit 05d2d82236
2 changed files with 20 additions and 4 deletions

View File

@@ -97,6 +97,9 @@ Perform the following tests to ensure proper functionality:
- **G1 Datasets Replay**: - **G1 Datasets Replay**:
```bash ```bash
# --repo-id Your unique repo ID on Hugging Face Hub
# --robot_type The type of the robot e.g., z1_dual_dex1_realsense, z1_realsense, g1_dex1,
python test/test_replay.py --repo-id unitreerobotics/G1_CameraPackaging_NewDataset --robot_type g1_dex1 python test/test_replay.py --repo-id unitreerobotics/G1_CameraPackaging_NewDataset --robot_type g1_dex1
``` ```
--- ---
@@ -121,8 +124,7 @@ Clone and build the required repositories:
4. Start the Z1 controller [Modify according to your own path]: 4. Start the Z1 controller [Modify according to your own path]:
```bash ```bash
cd z1_controller/build cd z1_controller/build && ./z1_ctrl
./z1_ctrl
``` ```
--- ---
@@ -148,6 +150,9 @@ Run the following tests:
- **Z1 Datasets Replay**: - **Z1 Datasets Replay**:
```bash ```bash
# --repo-id Your unique repo ID on Hugging Face Hub
# --robot_type The type of the robot e.g., z1_dual_dex1_realsense, z1_realsense, g1_dex1,
python test/test_replay.py --repo-id unitreerobotics/Z1_StackBox_Dataset --robot_type z1_realsense python test/test_replay.py --repo-id unitreerobotics/Z1_StackBox_Dataset --robot_type z1_realsense
``` ```
--- ---
@@ -188,6 +193,9 @@ Run the following tests:
- **Z1_Dual Datasets Replay**: - **Z1_Dual Datasets Replay**:
```bash ```bash
# --repo-id Your unique repo ID on Hugging Face Hub
# --robot_type The type of the robot e.g., z1_dual_dex1_realsense, z1_realsense, g1_dex1,
python test/test_replay.py --repo-id unitreerobotics/Z1_Dual_Dex1_StackBox_Dataset_V2 --robot_type z1_dual_dex1_realsense python test/test_replay.py --repo-id unitreerobotics/Z1_Dual_Dex1_StackBox_Dataset_V2 --robot_type z1_dual_dex1_realsense
``` ```
--- ---

View File

@@ -89,6 +89,9 @@ cd unitree_sdk2_python && pip install -e . && cd ..
- **G1 数据集回放** - **G1 数据集回放**
```bash ```bash
# --repo-id Your unique repo ID on Hugging Face Hub
# --robot_type The type of the robot e.g., z1_dual_dex1_realsense, z1_realsense, g1_dex1,
python test/test_replay.py --repo-id unitreerobotics/G1_CameraPackaging_NewDataset --robot_type g1_dex1 python test/test_replay.py --repo-id unitreerobotics/G1_CameraPackaging_NewDataset --robot_type g1_dex1
``` ```
--- ---
@@ -113,8 +116,7 @@ cd unitree_sdk2_python && pip install -e . && cd ..
4. 启动 Z1 控制器 [根据您的路径修改] 4. 启动 Z1 控制器 [根据您的路径修改]
```bash ```bash
cd z1_controller/build cd z1_controller/build && ./z1_ctrl
./z1_ctrl
``` ```
--- ---
@@ -140,6 +142,9 @@ cd unitree_sdk2_python && pip install -e . && cd ..
- **Z1 数据集回放** - **Z1 数据集回放**
```bash ```bash
# --repo-id Your unique repo ID on Hugging Face Hub
# --robot_type The type of the robot e.g., z1_dual_dex1_realsense, z1_realsense, g1_dex1,
python test/test_replay.py --repo-id unitreerobotics/Z1_StackBox_Dataset --robot_type z1_realsense python test/test_replay.py --repo-id unitreerobotics/Z1_StackBox_Dataset --robot_type z1_realsense
``` ```
--- ---
@@ -180,6 +185,9 @@ cd unitree_sdk2_python && pip install -e . && cd ..
- **Z1_Dual 数据集回放** - **Z1_Dual 数据集回放**
```bash ```bash
# --repo-id Your unique repo ID on Hugging Face Hub
# --robot_type The type of the robot e.g., z1_dual_dex1_realsense, z1_realsense, g1_dex1,
python test/test_replay.py --repo-id unitreerobotics/Z1_Dual_Dex1_StackBox_Dataset_V2 --robot_type z1_dual_dex1_realsense python test/test_replay.py --repo-id unitreerobotics/Z1_Dual_Dex1_StackBox_Dataset_V2 --robot_type z1_dual_dex1_realsense
``` ```
--- ---