Chennzi commited on
Commit
da646a3
·
verified ·
1 Parent(s): 41bb9cb

Upload Multimodal-Mind2Web batch 2

Browse files
README.md CHANGED
@@ -19,18 +19,18 @@ configs:
19
  - "*/*/validation*parquet"
20
  - "*/*/validation/*.parquet"
21
  - "*/*/validation/*/*.parquet"
22
- - config_name: web.use
23
  data_files:
24
  - split: train
25
  path:
26
- - "web/use/train*parquet"
27
- - "web/use/train/*.parquet"
28
- - "web/use/train/*/*.parquet"
29
  - split: validation
30
  path:
31
- - "web/use/validation*parquet"
32
- - "web/use/validation/*.parquet"
33
- - "web/use/validation/*/*.parquet"
34
  ---
35
 
36
  # cua-lite/Multimodal-Mind2Web
@@ -50,54 +50,123 @@ from datasets import load_dataset
50
  ds = load_dataset("cua-lite/Multimodal-Mind2Web")
51
 
52
  # just one (platform, task_type) cohort
53
- ds = load_dataset("cua-lite/Multimodal-Mind2Web", "web.use")
54
  ```
55
 
56
- You can also filter by `metadata.platform` / `metadata.task_type` /
57
- `metadata.others.*` after loading; every row carries a rich `metadata`
58
- struct (see schema below).
59
 
60
  ## Schema
61
 
62
- Each row has these columns:
63
 
64
  | column | type | notes |
65
  |---|---|---|
66
  | `images` | list[Image] | embedded PNG/JPEG bytes; HF viewer renders thumbnails |
67
- | `messages` | list[struct] | OpenAI-style turns with `role` + structured `content` |
68
- | `metadata` | struct | `{platform, task_type, extra_tool_schemas, valid_actions, others{...}}` |
 
69
 
70
  Coordinate values in `messages` are normalized to `[0, 1000]` integers.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
  **Image-dedup (`grounding.*` / `understanding` cohorts).** These cohorts are
73
  single-image-per-row and many rows share the same screenshot, so to avoid
74
  re-embedding identical image bytes once per instruction they are stored
75
  *folded*: one row per unique screenshot (image embedded once), carrying an
76
  extra **`_folded`** column — a JSON string with the authoritative list of
77
- `{messages, metadata}` members for that screenshot. The row's top-level
78
- `messages` is the members concatenated for viewer convenience. `use`
79
- cohorts are not folded. **Use `lite.data.hf.download` to consume this repo**
80
- it unfolds automatically back to one row per instruction; reading the parquet
81
- directly yields the folded form.
 
82
 
83
  ## Layout
84
 
85
  ```
86
- <platform>/<task_type>/<split>/shard-NNNNN-of-NNNNN.parquet # single-variant cohort
87
- <platform>/<task_type>/<split>/<variant>/shard-NNNNN-of-NNNNN.parquet # multi-variant cohort
88
  ```
89
 
90
- - `platform` ∈ {desktop, mobile, web}
91
  - `task_type` ∈ {understanding, grounding.action, grounding.point, grounding.bbox, use} — used verbatim as the dir component
92
- - HF config names are `<platform>.<task_type>` (e.g. `mobile.grounding.action`). The agent registry lookup key in code is `<agent>@<platform>@<task_type>` (e.g. `qwen3_vl@mobile@grounding.action`); only this user-facing token uses `.` between platform and task_type, because `@` triggers a 403 on the dataset-viewer's signed image URLs.
93
  - HF split names stay `train` / `validation` (the `datasets` library blacklists `<>:/\|?*` in split names; everything else is fine in config_name)
94
- - `validation` is an in-distribution held-out slice (never used in training); `test` is reserved for out-of-distribution benchmark datasets
95
 
96
  ## Stats
97
 
98
  | platform | task_type | variant | train | validation |
99
  |---|---|---|---:|---:|
100
- | web | use | use | 583 | 19 |
101
 
102
  ## Local mirror & SFT export
103
 
@@ -115,13 +184,15 @@ Rows in the local parquet have `images: list[str]`; bytes are extracted to
115
  the image store. `lite.train.export.export_sft` consumes the local
116
  form directly with `--image-root=$CUA_LITE_DATASETS_ROOT`.
117
 
118
- - Total unique images: **3,849**
119
- - Image store size: **3.71 GB**
120
 
121
  ## Notes
122
 
123
  Train split only; test_* splits are benchmark holdouts and are not produced. Coordinates are the centre of the target element's bounding box, normalized to [0,1000].
124
 
 
 
125
  ## License & citation
126
 
127
  See original dataset (osunlp/Multimodal-Mind2Web).
 
19
  - "*/*/validation*parquet"
20
  - "*/*/validation/*.parquet"
21
  - "*/*/validation/*/*.parquet"
22
+ - config_name: browser.use
23
  data_files:
24
  - split: train
25
  path:
26
+ - "browser/use/train*parquet"
27
+ - "browser/use/train/*.parquet"
28
+ - "browser/use/train/*/*.parquet"
29
  - split: validation
30
  path:
31
+ - "browser/use/validation*parquet"
32
+ - "browser/use/validation/*.parquet"
33
+ - "browser/use/validation/*/*.parquet"
34
  ---
35
 
36
  # cua-lite/Multimodal-Mind2Web
 
50
  ds = load_dataset("cua-lite/Multimodal-Mind2Web")
51
 
52
  # just one (platform, task_type) cohort
53
+ ds = load_dataset("cua-lite/Multimodal-Mind2Web", "browser.use")
54
  ```
55
 
56
+ After loading, parse `metadata` as JSON before filtering by `metadata_kind`,
57
+ `dims`, or `others.*`; every row carries a rich metadata object inside that JSON
58
+ string (see schema below). CUA rows use `dims == [platform, task_type]`.
59
 
60
  ## Schema
61
 
62
+ Published parquet columns:
63
 
64
  | column | type | notes |
65
  |---|---|---|
66
  | `images` | list[Image] | embedded PNG/JPEG bytes; HF viewer renders thumbnails |
67
+ | `messages` | string (JSON array) | parse as JSON to OpenAI-style turns with `role`, structured `content`, nested `tool_calls`, and `role:"tool"` results |
68
+ | `metadata` | string (JSON object) | parse as JSON to fields `metadata_kind`, `dims`, `extra_tool_schemas`, CUA-only `valid_actions`, and `others` |
69
+ | `_folded` | string (JSON array, optional) | folded grounding/understanding rows only; authoritative per-instruction `messages` / `metadata` members |
70
 
71
  Coordinate values in `messages` are normalized to `[0, 1000]` integers.
72
+ The JSON examples below show the decoded shape, not the raw string cell.
73
+
74
+ `metadata.extra_tool_schemas[*]` uses the nested Chat Completions function-tool
75
+ declaration shape:
76
+
77
+ ```json
78
+ {
79
+ "metadata_kind": "cua",
80
+ "dims": ["desktop", "use"],
81
+ "extra_tool_schemas": [
82
+ {
83
+ "type": "function",
84
+ "function": {
85
+ "name": "bash",
86
+ "description": "Run a shell command.",
87
+ "parameters": {
88
+ "type": "object",
89
+ "properties": {"cmd": {"type": "string"}},
90
+ "required": ["cmd"]
91
+ }
92
+ }
93
+ }
94
+ ],
95
+ "valid_actions": ["click", "type"],
96
+ "others": {}
97
+ }
98
+ ```
99
+
100
+ `messages[].tool_calls[*]` uses the matching nested invocation shape. Tool
101
+ results pair `tool_calls[].id` with `role:"tool"` `tool_call_id`:
102
+
103
+ ```json
104
+ [
105
+ {
106
+ "role": "user",
107
+ "content": [
108
+ {"type": "image", "index": 0},
109
+ {"type": "text", "text": "Click the OK button."}
110
+ ]
111
+ },
112
+ {
113
+ "role": "assistant",
114
+ "tool_calls": [
115
+ {
116
+ "id": "call_0000",
117
+ "type": "function",
118
+ "function": {
119
+ "name": "computer",
120
+ "arguments": {
121
+ "actions": [
122
+ {"action": "click", "coordinate": [640, 400]},
123
+ {"action": "type", "text": "hello"}
124
+ ]
125
+ }
126
+ }
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "role": "tool",
132
+ "tool_call_id": "call_0000",
133
+ "content": [
134
+ {"type": "image", "index": 1},
135
+ {"type": "text", "text": "clicked; typed"}
136
+ ]
137
+ }
138
+ ]
139
+ ```
140
 
141
  **Image-dedup (`grounding.*` / `understanding` cohorts).** These cohorts are
142
  single-image-per-row and many rows share the same screenshot, so to avoid
143
  re-embedding identical image bytes once per instruction they are stored
144
  *folded*: one row per unique screenshot (image embedded once), carrying an
145
  extra **`_folded`** column — a JSON string with the authoritative list of
146
+ per-instruction members for that screenshot. Each member's `messages` and
147
+ `metadata` values are the same opaque JSON strings described above. The row's
148
+ top-level `messages` is a JSON string containing the members concatenated for
149
+ viewer convenience. `use` cohorts are not folded. **Use
150
+ `lite.data.hf.download` to consume this repo** — it unfolds automatically back
151
+ to one row per instruction; reading the parquet directly yields the folded form.
152
 
153
  ## Layout
154
 
155
  ```
156
+ <platform>/<task_type>/<split>/<variant>/shard-NNNNN-of-NNNNN.parquet
 
157
  ```
158
 
159
+ - `platform` ∈ {desktop, browser, mobile}
160
  - `task_type` ∈ {understanding, grounding.action, grounding.point, grounding.bbox, use} — used verbatim as the dir component
161
+ - HF config names are `<platform>.<task_type>` by default (e.g. `mobile.grounding.action`) — UNLESS the dataset was staged with `--config-names`, which sets verbatim, explicitly-chosen config names (see the `configs:` block above for the authoritative list). The agent registry lookup key in code is `<agent>@<platform>@<task_type>` (e.g. `qwen3_vl@mobile@grounding.action`); only this user-facing token uses `.` between platform and task_type, because `@` triggers a 403 on the dataset-viewer's signed image URLs.
162
  - HF split names stay `train` / `validation` (the `datasets` library blacklists `<>:/\|?*` in split names; everything else is fine in config_name)
163
+ - `validation` is an in-distribution held-out slice: no validation **sample** also appears in `train` — content-identical rows (same `images` + same `messages`, differing only in their ids) are co-located into one split, so upstream re-publishing one sample under two ids cannot straddle the split. It is *not* disjoint in **images**: one screenshot legitimately backs many distinct samples, and only whole samples are co-located, so the same picture can appear on both sides. `test` is reserved for out-of-distribution benchmark datasets
164
 
165
  ## Stats
166
 
167
  | platform | task_type | variant | train | validation |
168
  |---|---|---|---:|---:|
169
+ | browser | use | use | 579 | 18 |
170
 
171
  ## Local mirror & SFT export
172
 
 
184
  the image store. `lite.train.export.export_sft` consumes the local
185
  form directly with `--image-root=$CUA_LITE_DATASETS_ROOT`.
186
 
187
+ - Total unique images: **3,803**
188
+ - Image store size: **3.68 GB**
189
 
190
  ## Notes
191
 
192
  Train split only; test_* splits are benchmark holdouts and are not produced. Coordinates are the centre of the target element's bounding box, normalized to [0,1000].
193
 
194
+ split: content-identical rows co-located, then hash_split on metadata.others.id with val_frac=0.02, seed=42, val_cap=2000 per (metadata.dims[0], metadata.dims[1], variant) (an upstream split label, where the source ships one, wins over the hash). A cap-bound carve depends on source iteration order and these parameters do not reproduce it; content co-location may make the final physical validation row count differ from the cap.
195
+
196
  ## License & citation
197
 
198
  See original dataset (osunlp/Multimodal-Mind2Web).
browser/use/train/use/shard-00000-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a2e70666f8b833a16b6a8c43f2ddd902ac643d3a719556bcd902d8386fefd23
3
+ size 214414160
browser/use/train/use/shard-00001-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d522449218800751a89dac32463ca827d6b685caf7f01497ad1d7296e53de23
3
+ size 171503300
browser/use/train/use/shard-00002-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b94b6d70dcbeeebc931365280993c77bb0fc4cee6cdf076b49b921cfedf24571
3
+ size 206178551
browser/use/train/use/shard-00003-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8ca1ad9779f5241a9d122416795f064b2f0ad7af54232da04a0c2f92bde07c2
3
+ size 177513098
browser/use/train/use/shard-00004-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82b3dd56ad59e9b41b28246b755aa08c854db75704cbb1333b1f437f08f9141e
3
+ size 186381082
browser/use/train/use/shard-00005-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7fcb9a1cc33e13573133dc5984b1611f08e8228dc33ee9413b952645b3d7d85
3
+ size 156717025
browser/use/train/use/shard-00006-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:530ac61a9cf2838b40cf328abfedb260c1971f48dc97db2486cedbed3bac7937
3
+ size 181455149
browser/use/train/use/shard-00007-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e51af1636d6d6fd4ad640b2042a08aa155e9098fe9aff815eb9d78fc89675023
3
+ size 191781759
browser/use/train/use/shard-00008-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:808d7cd5770f2dc263d92ee594ce879c8dd76a94978239aeff6bd7ab8ec5aa82
3
+ size 192640560
browser/use/train/use/shard-00009-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82cfe7722c173500c6291ce82bd53e3283db567a850e003dec66f06ea1b97834
3
+ size 172646252
browser/use/train/use/shard-00010-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8664b6c8e430b99b405f62707b5dcc9e4e38d0a823ebb2d1d44460f9920f1aba
3
+ size 159237981
browser/use/train/use/shard-00011-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6651ac219b6a064c46eb19fa7f3b37e97449248f916749f90858e938f4b67910
3
+ size 159476694
browser/use/train/use/shard-00012-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f4a1b347de4cfea1a398bc6bbdefd53f1153aaeb04cfab5039b8d78947a6ca5
3
+ size 206146855
browser/use/train/use/shard-00013-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22c1688cd1874955b2c91fa8ce47aa94a65831abce4b7916338780954582f532
3
+ size 193700234
browser/use/train/use/shard-00014-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b188d051dbefda17503ebe857ab1925c497667ac62136ba49c3c15d4a8951b06
3
+ size 196355320
browser/use/train/use/shard-00015-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd835cfa3a499fabd37d058697e7ea2502e691a12cafa5a7c23181f4e2113dc
3
+ size 176773827
browser/use/train/use/shard-00016-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c8ea6b3c73fbde46dc9d86cd17f669d13b651665044125c19b75f7d36c42609
3
+ size 194547427
browser/use/train/use/shard-00017-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb8362dabe0b1b07425cd5fd014cc3e1eb8078787c17acb78771dfd36b8a64f1
3
+ size 213289168
browser/use/train/use/shard-00018-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e83b152c5730309605e51ec725fab7acbfcd68672090d24690d1fd43c9ad31b
3
+ size 216280900
browser/use/train/use/shard-00019-of-00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d831d996f50eed6adf4db4e7f06e14680067680c2a8044b89aa9a4dc29b15e2
3
+ size 78900717
browser/use/validation/use/shard-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf9754fa15629bc5918938aea832a026af891902c142f841c5f0388923016353
3
+ size 128598197
stats.json CHANGED
@@ -1,11 +1,11 @@
1
  {
2
  "rows_in": 0,
3
- "rows_out": 602,
4
  "rows_dropped": 0,
5
- "unique_images": 3849,
6
- "image_store_bytes": 3709625117,
7
  "by_partition": {
8
- "web::use::train::use": 583,
9
- "web::use::validation::use": 19
10
  }
11
  }
 
1
  {
2
  "rows_in": 0,
3
+ "rows_out": 597,
4
  "rows_dropped": 0,
5
+ "unique_images": 3803,
6
+ "image_store_bytes": 3677148546,
7
  "by_partition": {
8
+ "browser::use::train::use": 579,
9
+ "browser::use::validation::use": 18
10
  }
11
  }