feat: add CrossPoint-Bench task#1349
Open
njb-nvidia wants to merge 1 commit into
Open
Conversation
CrossPoint-Bench is a 1,000-sample cross-view point correspondence benchmark covering four sub-tasks at two granularity levels (object / part): - Fine-grained Grounding (161, coordinate output, in-mask hit) - Visibility Reasoning (220, binary MCQ) - Correspondence-Judgement (156, MCQ) - Correspondence-Pointing (463, coordinate output, in-mask hit) Dataset: WangYipu2002/CrossPoint-Bench on HuggingFace. The JSONL is loaded via load_dataset; image files live alongside under image/ and are fetched once via snapshot_download (cached on subsequent calls). Metric: crosspoint_accuracy — task-type-aware scoring (MCQ letter match for the two MCQ subtypes, point-in-mask hit for the coordinate subtypes). Per-type and per-level breakdowns are printed at aggregation time. The CROSSPOINT_COORD_FORMAT env var (absolute|relative_1|relative_1000) controls how coordinate outputs are interpreted before being checked against the ground-truth mask. Default: absolute. Reference: https://arxiv.org/abs/2512.04686
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds CrossPoint-Bench, a 1,000-sample cross-view point correspondence benchmark covering four sub-tasks at two granularity levels (object / part):
Dataset: `WangYipu2002/CrossPoint-Bench`. The JSONL is loaded via `load_dataset`; image files live alongside under `image/` and are fetched once via `snapshot_download` (cached on subsequent calls).
Paper: https://arxiv.org/abs/2512.04686
Files
Coordinate format env var
Models output coordinates in different conventions: absolute pixels, normalized [0, 1], or scaled to [0, 1000] (e.g. Qwen-VL family). The task respects `CROSSPOINT_COORD_FORMAT`:
Parity vs. our local vlmevalkit implementation
Qwen3-VL-2B-Instruct, full 1,000 items, 6x H100 (`CROSSPOINT_COORD_FORMAT=relative_1000`), greedy decoding.
All sub-metrics within 2pp — essentially identical given binary-MCQ + small-sample noise plus the `qwen3_vl` model-class drift we have observed on prior ports.
Test plan