ZIHLING commited on
Commit
596a8c6
Β·
1 Parent(s): c8a73c1

fix: format dataset structure and quick start code blocks

Browse files
Files changed (1) hide show
  1. README.md +17 -12
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/ ← Index files (CSV, taxonomy)
165
- β”œβ”€β”€ retargeted/ ← Robot-ready trajectories (gated)
166
- β”‚ └── g1_joint_trajectory/
167
- β”œβ”€β”€ raw_bvh/ ← Original BVH (gated)
168
- β”œβ”€β”€ annotations/ ← Semantic labels
169
- β”œβ”€β”€ samples/ ← Public preview (no gate)
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.