File size: 4,182 Bytes
f7a3c27
03f1d1e
f7a3c27
03f1d1e
 
 
 
 
f7a3c27
 
03f1d1e
f7a3c27
03f1d1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7a3c27
 
03f1d1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7a3c27
03f1d1e
 
 
 
 
 
f7a3c27
03f1d1e
 
 
f7a3c27
03f1d1e
f7a3c27
03f1d1e
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
pretty_name: ContrastGround
configs:
- config_name: corpus
  data_files:
  - split: train
    path: data/corpus/train.jsonl
- config_name: selectground-8b
  data_files:
  - split: train_pairs
    path: data/selectground-8b/train_pairs.jsonl
  - split: train_replay
    path: data/selectground-8b/train_replays.jsonl
- config_name: selectground-30b-a3b
  data_files:
  - split: train_pairs
    path: data/selectground-30b-a3b/train_pairs.jsonl
  - split: train_replay
    path: data/selectground-30b-a3b/train_replays.jsonl
task_categories:
- image-to-text
tags:
- gui-grounding
- computer-use
- contrastive-learning
- sft
license: other
---

# ContrastGround

ContrastGround is the training corpus for the updated SelectGround-8B and
SelectGround-30B-A3B checkpoints. It combines UI-Vision-cleaned ClickContrast
examples with teacher-verified hard negatives mined from GroundCUA. It does not
contain UI-Vision examples.

## Which configuration should I use?

| Configuration | Pair rows | Replay rows | Released model |
|---|---:|---:|---|
| `selectground-8b` | 4,942 | 4,103 | `ruotian/SelectGround-8B` |
| `selectground-30b-a3b` | 4,544 | 3,824 | `ruotian/SelectGround-30B-A3B` |
| `corpus` | 4,944 | 4,103 | Auditable union of both recipes |

The two model configurations are intentionally different. Use the exact
configuration named by the model card to reproduce that checkpoint. The
`corpus` rows include `training_configs`, which records membership in one or
both released recipes.

```python
from datasets import load_dataset

dataset = load_dataset("ruotian/ContrastGround", "selectground-8b")
pairs = dataset["train_pairs"]
replay = dataset["train_replay"]
```

The `image` field is a repository-relative content-addressed path. When using a
snapshot checkout, resolve it relative to the snapshot root.

## Schema

Every row contains `image`, `image_width`, `image_height`, `instruction`,
`response`, `target_bbox`, `source_ref`, `role`, and `source_license`. Pair rows
also contain `distractor_bbox` and `candidate_bboxes`, which supervise the
SelectGround auxiliary selection loss. Coordinates in bounding boxes are
absolute source-image pixels; `response` is the target center in normalized
0–1000 coordinates.

## Construction

The ClickContrast component starts from Click-100k and removes all examples
whose canonical source is UI-Vision (`element_grounding` or
`layout_grounding`). Its replay remains stratified across the retained
Click-100k sources.

The GroundCUA component uses two natural-language views per target. A target is
eligible only when MAI-UI-8B and UI-Venus-1.5-8B both land inside the original
pixel-space ground-truth box, while Qwen3-VL-8B misses the expanded target
neighborhood and lands on a different native UI element. Spatial prompts also
require a unique text anchor and an unambiguous nearest target. The released
views differ only in how conservatively those GroundCUA pairs and replay rows
are sampled.

Pinned upstream revisions and SHA-256 checksums for every JSONL are recorded in
`manifest.json`. Images are named by their byte-level SHA-256 digest; 8,423
source paths collapse to 6,834 distinct image files.

## Licensing and provenance

GroundCUA is distributed under MIT by ServiceNow. At the pinned revision used
here, the Click-100k dataset card does not declare a dataset-level license.
Accordingly this mixed-source dataset uses `license: other`, and every row
records its source and source-license status. Users are responsible for
checking the upstream terms for their intended use. This card does not
relicense upstream images or annotations.

The optional teacher-point provenance fields inside `source_ref` are
JSON-encoded coordinate strings so that Click-100k and GroundCUA rows share a
stable Arrow schema; they are not training targets.

## Evaluation leakage

The ClickContrast component was rebuilt to exclude UI-Vision provenance before
training. ScreenSpot-Pro, UI-Vision, and OSWorld-G are not validation splits of
this dataset. Reported released checkpoints were selected using those public
benchmarks, so their scores should be treated as test-tuned rather than as
held-out model-selection estimates.