fix: format dataset structure and quick start code blocks
Browse files
README.md
CHANGED
|
@@ -160,14 +160,17 @@ Full taxonomy includes locomotion, manipulation, dexterous hand, tool use, objec
|
|
| 160 |
---
|
| 161 |
|
| 162 |
## Dataset Structure
|
|
|
|
|
|
|
| 163 |
chingmu-1000h/
|
| 164 |
-
βββ metadata/
|
| 165 |
-
βββ retargeted/
|
| 166 |
-
β
|
| 167 |
-
βββ raw_bvh/
|
| 168 |
-
βββ annotations/
|
| 169 |
-
βββ samples/
|
| 170 |
βββ LICENSE.md
|
|
|
|
| 171 |
|
| 172 |
---
|
| 173 |
|
|
@@ -175,16 +178,20 @@ chingmu-1000h/
|
|
| 175 |
|
| 176 |
```bash
|
| 177 |
pip install huggingface_hub
|
|
|
|
| 178 |
|
| 179 |
```python
|
| 180 |
from huggingface_hub import hf_hub_download
|
|
|
|
| 181 |
repo_id = "ZIHLING/Chingmu-RobotData"
|
| 182 |
file_path = hf_hub_download(
|
| 183 |
-
repo_id=repo_id,
|
| 184 |
-
filename="samples/Move_the_box_001.bvh",
|
| 185 |
-
repo_type="dataset",
|
| 186 |
-
local_dir="./robot_samples"
|
|
|
|
| 187 |
print(f"Downloaded: {file_path}")
|
|
|
|
| 188 |
|
| 189 |
For full access, request permission via the **Request access** button, then use `snapshot_download`.
|
| 190 |
|
|
@@ -204,8 +211,6 @@ For full access, request permission via the **Request access** button, then use
|
|
| 204 |
|
| 205 |
## Quality & Limitations
|
| 206 |
|
| 207 |
-
## Quality & Limitations
|
| 208 |
-
|
| 209 |
**Quality controls:** marker swap correction, gap-filling (β€6 frames), foot skating detection, manual review. Flags: `pass`, `warning`, `fail`.
|
| 210 |
|
| 211 |
**Accuracy:** joint error <1mm, object pose Β±2mm / Β±0.5Β°, temporal sync <1 frame.
|
|
|
|
| 160 |
---
|
| 161 |
|
| 162 |
## Dataset Structure
|
| 163 |
+
|
| 164 |
+
```
|
| 165 |
chingmu-1000h/
|
| 166 |
+
βββ metadata/ β Index files (CSV, taxonomy)
|
| 167 |
+
βββ retargeted/ β Robot-ready trajectories (gated)
|
| 168 |
+
β βββ g1_joint_trajectory/
|
| 169 |
+
βββ raw_bvh/ β Original BVH (gated)
|
| 170 |
+
βββ annotations/ β Semantic labels
|
| 171 |
+
βββ samples/ β Public preview (no gate)
|
| 172 |
βββ LICENSE.md
|
| 173 |
+
```
|
| 174 |
|
| 175 |
---
|
| 176 |
|
|
|
|
| 178 |
|
| 179 |
```bash
|
| 180 |
pip install huggingface_hub
|
| 181 |
+
```
|
| 182 |
|
| 183 |
```python
|
| 184 |
from huggingface_hub import hf_hub_download
|
| 185 |
+
|
| 186 |
repo_id = "ZIHLING/Chingmu-RobotData"
|
| 187 |
file_path = hf_hub_download(
|
| 188 |
+
repo_id=repo_id,
|
| 189 |
+
filename="samples/Move_the_box_001.bvh",
|
| 190 |
+
repo_type="dataset",
|
| 191 |
+
local_dir="./robot_samples"
|
| 192 |
+
)
|
| 193 |
print(f"Downloaded: {file_path}")
|
| 194 |
+
```
|
| 195 |
|
| 196 |
For full access, request permission via the **Request access** button, then use `snapshot_download`.
|
| 197 |
|
|
|
|
| 211 |
|
| 212 |
## Quality & Limitations
|
| 213 |
|
|
|
|
|
|
|
| 214 |
**Quality controls:** marker swap correction, gap-filling (β€6 frames), foot skating detection, manual review. Flags: `pass`, `warning`, `fail`.
|
| 215 |
|
| 216 |
**Accuracy:** joint error <1mm, object pose Β±2mm / Β±0.5Β°, temporal sync <1 frame.
|