JeasLee commited on
Commit
4085946
·
verified ·
1 Parent(s): 6cf3587

Update Annotation_with_action_lerobotv21/README.md

Browse files
Annotation_with_action_lerobotv21/README.md CHANGED
@@ -169,6 +169,25 @@ Each annotation has a corresponding quality indicator prefixed with `Q_annotatio
169
 
170
  ---
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  ## Quick Start
173
 
174
  The dataloader code is at [RoboInterData/lerobot_dataloader](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterData/lerobot_dataloader).
 
169
 
170
  ---
171
 
172
+ ## Download & Extract
173
+
174
+ The `data/` and `videos/` directories are distributed as `.tar` archives (one per chunk) to reduce the number of files during transfer. After downloading, extract them in place:
175
+
176
+ ```bash
177
+ cd Annotation_with_action_lerobotv21
178
+
179
+ for dataset in lerobot_droid_anno lerobot_rh20t_anno; do
180
+ for subdir in data videos; do
181
+ cd ${dataset}/${subdir}
182
+ for f in *.tar; do tar xf "$f" && rm "$f"; done
183
+ cd ../..
184
+ done
185
+ done
186
+ ```
187
+
188
+ After extraction, each `data/` will contain `chunk-000/`, `chunk-001/`, ... with `.parquet` files, and each `videos/` will contain `chunk-000/`, `chunk-001/`, ... with `.mp4` files. The `meta/` directories are ready to use without extraction.
189
+
190
+
191
  ## Quick Start
192
 
193
  The dataloader code is at [RoboInterData/lerobot_dataloader](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterData/lerobot_dataloader).