Update README.md
Browse files
README.md
CHANGED
|
@@ -85,6 +85,24 @@ RoboInter-Data/
|
|
| 85 |
|
| 86 |
The primary data format. Contains **actions + observations + annotations** in [LeRobot v2.1](https://github.com/huggingface/lerobot) format (parquet + MP4 videos), ready for policy training.
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
### Directory Layout
|
| 89 |
|
| 90 |
```
|
|
|
|
| 85 |
|
| 86 |
The primary data format. Contains **actions + observations + annotations** in [LeRobot v2.1](https://github.com/huggingface/lerobot) format (parquet + MP4 videos), ready for policy training.
|
| 87 |
|
| 88 |
+
### Download & Extract
|
| 89 |
+
Dataset [link](https://huggingface.co/datasets/InternRobotics/RoboInter-Data/tree/main/Annotation_with_action_lerobotv21). Dataloader Code [link](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterData).
|
| 90 |
+
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:
|
| 91 |
+
|
| 92 |
+
```bash
|
| 93 |
+
cd Annotation_with_action_lerobotv21
|
| 94 |
+
|
| 95 |
+
for dataset in lerobot_droid_anno lerobot_rh20t_anno; do
|
| 96 |
+
for subdir in data videos; do
|
| 97 |
+
cd ${dataset}/${subdir}
|
| 98 |
+
for f in *.tar; do tar xf "$f" && rm "$f"; done
|
| 99 |
+
cd ../..
|
| 100 |
+
done
|
| 101 |
+
done
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
+
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.
|
| 105 |
+
|
| 106 |
### Directory Layout
|
| 107 |
|
| 108 |
```
|