Update README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: VLAC-Cut-FullData
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
- video-progress
|
| 6 |
+
- benchmark
|
| 7 |
+
- embodied-ai
|
| 8 |
+
license: other
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# VLAC-Cut-FullData
|
| 12 |
+
|
| 13 |
+
VLAC-Cut-FullData is the full-data release for VLAC-Cut. It provides the complete raw-data archive set, benchmark-style JSON files, and a lightweight frame-extraction workflow for reproducing evaluation on the released benchmark protocol.
|
| 14 |
+
|
| 15 |
+
## Contents
|
| 16 |
+
|
| 17 |
+
```text
|
| 18 |
+
benchmark_style_all/
|
| 19 |
+
train/video_progress_benchmark_file.json
|
| 20 |
+
test_expert_seen/video_progress_benchmark_file.json
|
| 21 |
+
test_expert_unseen/video_progress_benchmark_file.json
|
| 22 |
+
test_nonexpert_seen/video_progress_benchmark_file.json
|
| 23 |
+
test_nonexpert_unseen/video_progress_benchmark_file.json
|
| 24 |
+
all/video_progress_benchmark_file.json
|
| 25 |
+
|
| 26 |
+
scripts/
|
| 27 |
+
unpack_data.sh
|
| 28 |
+
extract_vlac2_release_frames.py
|
| 29 |
+
|
| 30 |
+
data/
|
| 31 |
+
vlac2_release_data_part01_arx_group_a.tar.zst
|
| 32 |
+
vlac2_release_data_part02_arx_group_b.tar.zst
|
| 33 |
+
vlac2_release_data_part03_arx_group_c.tar.zst
|
| 34 |
+
vlac2_release_data_part04_droid_group_a.tar.zst
|
| 35 |
+
vlac2_release_data_part05_droid_group_b.tar.zst
|
| 36 |
+
vlac2_release_data_part06_droid_group_c.tar.zst
|
| 37 |
+
vlac2_release_data_part07_other_sources.tar.zst
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Usage
|
| 41 |
+
|
| 42 |
+
### 1. Unpack the raw-data archives
|
| 43 |
+
|
| 44 |
+
```bash
|
| 45 |
+
bash scripts/unpack_data.sh /path/to/data
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
### 2. Extract frames for a selected benchmark JSON
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
python scripts/extract_vlac2_release_frames.py \
|
| 52 |
+
--data-root /path/to/data \
|
| 53 |
+
--frames-root /path/to/data_extracted_frames \
|
| 54 |
+
--benchmark-json benchmark_style_all/test_expert_seen/video_progress_benchmark_file.json
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
The frame extractor decodes only the episodes referenced by the provided benchmark JSON file(s), rather than scanning the full raw-data release.
|
| 58 |
+
|
| 59 |
+
### 3. Use the benchmark JSON files
|
| 60 |
+
|
| 61 |
+
Frame paths in the benchmark JSON files use the prefix:
|
| 62 |
+
|
| 63 |
+
```text
|
| 64 |
+
__VLAC2_FRAMES_ROOT__/
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
Replace `__VLAC2_FRAMES_ROOT__` with the absolute path to the extracted-frame directory.
|
| 68 |
+
|
| 69 |
+
## Notes
|
| 70 |
+
|
| 71 |
+
* This release contains the complete raw-data archive set used by the VLAC-Cut benchmark release workflow.
|
| 72 |
+
* The `benchmark_style_all/all` split is larger than the benchmark evaluation subsets and is rebuilt from the full annotation PKL source tree.
|
| 73 |
+
* The benchmark JSON files are pre-generated and do not need to be rebuilt for standard use.
|