futurefantasy commited on
Commit
f2a495a
·
verified ·
1 Parent(s): 29bdbb4

Update README.md for direct data extraction layout

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -27,15 +27,15 @@ VLAC2 is a video-progress benchmark for long-horizon robot manipulation. This re
27
 
28
  ## Usage
29
 
30
- 1. Unpack the benchmark video archives into `vlac2_release_data/`.
31
 
32
  ```bash
33
  bash scripts/extract_vlac2_release_raw_archives.sh \
34
  /path/to/vlac2_release/data \
35
- /path/to/vlac2_release/vlac2_release_data
36
  ```
37
 
38
- If both arguments are omitted, the script defaults to `data/` and extracts into `vlac2_release_data/` under the release root.
39
  The script expects exactly the released benchmark archives: `test_videos.tar` and `train_videos.tar` (or their `.tar.zst` variants).
40
 
41
  2. Extract benchmark frames from the unpacked raw videos.
@@ -44,6 +44,7 @@ The script expects exactly the released benchmark archives: `test_videos.tar` an
44
  python scripts/extract_vlac2_release_frames.py --release-root /path/to/vlac2_release
45
  ```
46
 
 
47
  If `--output-root` is not specified, extracted frames are written to `/path/to/vlac2_release/_extracted_frames/`, which is created automatically by the script.
48
 
49
  3. Use the benchmark files for training or evaluation. Frame paths in the JSONs use the prefix `__VLAC2_FRAMES_ROOT__/...`. Replace `__VLAC2_FRAMES_ROOT__` with the absolute path of the extracted-frame directory. For example, if extracted frames are written to `/data/VLAC2-Benchmark/_extracted_frames`, then `__VLAC2_FRAMES_ROOT__/ARX-data/...` becomes `/data/VLAC2-Benchmark/_extracted_frames/ARX-data/...`. If you choose a custom `--output-root`, substitute that directory instead.
 
27
 
28
  ## Usage
29
 
30
+ 1. Unpack the benchmark video archives directly into `data/`.
31
 
32
  ```bash
33
  bash scripts/extract_vlac2_release_raw_archives.sh \
34
  /path/to/vlac2_release/data \
35
+ /path/to/vlac2_release/data
36
  ```
37
 
38
+ If both arguments are omitted, the script defaults to `data/` and extracts into `data/` under the release root.
39
  The script expects exactly the released benchmark archives: `test_videos.tar` and `train_videos.tar` (or their `.tar.zst` variants).
40
 
41
  2. Extract benchmark frames from the unpacked raw videos.
 
44
  python scripts/extract_vlac2_release_frames.py --release-root /path/to/vlac2_release
45
  ```
46
 
47
+ Here `--release-root` should be the top-level release directory that contains `README.md`, `benchmark_splits/`, `data/`, and `scripts/`.
48
  If `--output-root` is not specified, extracted frames are written to `/path/to/vlac2_release/_extracted_frames/`, which is created automatically by the script.
49
 
50
  3. Use the benchmark files for training or evaluation. Frame paths in the JSONs use the prefix `__VLAC2_FRAMES_ROOT__/...`. Replace `__VLAC2_FRAMES_ROOT__` with the absolute path of the extracted-frame directory. For example, if extracted frames are written to `/data/VLAC2-Benchmark/_extracted_frames`, then `__VLAC2_FRAMES_ROOT__/ARX-data/...` becomes `/data/VLAC2-Benchmark/_extracted_frames/ARX-data/...`. If you choose a custom `--output-root`, substitute that directory instead.