lapchann commited on
Commit
8776ffb
·
1 Parent(s): 6a803eb

update docs for prev pointing changes

Browse files
Files changed (3) hide show
  1. CHANGELOG.md +8 -0
  2. README.md +1 -1
  3. data/README.md +8 -2
CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
  All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
4
 
5
  ## 2026-05-27
 
 
 
 
 
 
 
 
6
  - **`data/event_verification/` flattened** to match the `vqa/` and
7
  `temporal_localization/` layout. The `filtered/.../{metropolis,tailgating,warehouse_near_miss}`
8
  subtree was removed; all 163 videos now live directly under
 
3
  All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
4
 
5
  ## 2026-05-27
6
+ - **`data/pointing/VANTAGE_2DPointing.tsv` updated.** MCQ option
7
+ coordinates (columns `A`–`D`) are now expressed in the normalized
8
+ `0–1000` coordinate system (each cell is an `x,y` pair, with both
9
+ components in `[0, 1000]` relative to the image dimensions). The
10
+ public TSV ships only the question side: columns are
11
+ `index, question_id, image_path, question, A, B, C, D`; the
12
+ ground-truth fields (`answer`, `target_point`) are held server-side
13
+ and are not included in the released file.
14
  - **`data/event_verification/` flattened** to match the `vqa/` and
15
  `temporal_localization/` layout. The `filtered/.../{metropolis,tailgating,warehouse_near_miss}`
16
  subtree was removed; all 163 videos now live directly under
README.md CHANGED
@@ -22,7 +22,7 @@ configs:
22
  - config_name: pointing
23
  data_files:
24
  - split: test
25
- path: data/pointing/Vantage2DPointing.tsv
26
  - config_name: tracking
27
  data_files:
28
  - split: test
 
22
  - config_name: pointing
23
  data_files:
24
  - split: test
25
+ path: data/pointing/VANTAGE_2DPointing.tsv
26
  - config_name: tracking
27
  data_files:
28
  - split: test
data/README.md CHANGED
@@ -18,7 +18,7 @@ data/
18
  │ ├── *.mp4 (under videos/)
19
  │ └── data_jsons/annotations/*.json
20
  ├── pointing/ # 2D spatial pointing
21
- │ └── Vantage2DPointing.tsv
22
  ├── referring/ # 2D referring expressions
23
  │ └── refdrone_test_llava.json
24
  ├── temporal_localization/ # Temporal grounding
@@ -59,7 +59,13 @@ resolving against `event_verification/videos/`. The binary `answer` is
59
  removed.
60
 
61
  ### `pointing/` — 2D Spatial Pointing
62
- `Vantage2DPointing.tsv` — tab-separated. Each row carries the question and multiple-choice options; the last two ground-truth columns are dropped.
 
 
 
 
 
 
63
 
64
  ### `referring/` — 2D Referring Expressions
65
  `refdrone_test_llava.json` — list of LLaVA conversation entries. Only the `human` turn (the question) is retained; the `gpt` turn (predicted bboxes) and GT meta fields are removed.
 
18
  │ ├── *.mp4 (under videos/)
19
  │ └── data_jsons/annotations/*.json
20
  ├── pointing/ # 2D spatial pointing
21
+ │ └── VANTAGE_2DPointing.tsv
22
  ├── referring/ # 2D referring expressions
23
  │ └── refdrone_test_llava.json
24
  ├── temporal_localization/ # Temporal grounding
 
59
  removed.
60
 
61
  ### `pointing/` — 2D Spatial Pointing
62
+ `VANTAGE_2DPointing.tsv` — tab-separated, 8 columns:
63
+ `index, question_id, image_path, question, A, B, C, D`. Each row carries
64
+ the question and four multiple-choice options (`A`–`D`); each option is
65
+ an `x,y` pair in the **normalized `0–1000` coordinate system** (both
66
+ components in `[0, 1000]` relative to the image dimensions). Ground-truth
67
+ fields (`answer`, `target_point`) are held server-side and are not
68
+ included in the public TSV.
69
 
70
  ### `referring/` — 2D Referring Expressions
71
  `refdrone_test_llava.json` — list of LLaVA conversation entries. Only the `human` turn (the question) is retained; the `gpt` turn (predicted bboxes) and GT meta fields are removed.