julia-lex commited on
Commit
0a2a26f
·
verified ·
1 Parent(s): 16ad94c

Update dataset card

Browse files

Sync dataset card from browseruse-agent-bench repository.

Files changed (1) hide show
  1. README.md +118 -129
README.md CHANGED
@@ -1,170 +1,159 @@
1
  ---
2
- license: apache-2.0
3
  language:
4
- - zh
5
- - en
6
- tags:
7
- - browser-agent
8
- - web-automation
9
- - benchmark
10
- - evaluation
11
- size_categories:
12
- - n<1K
13
  task_categories:
14
- - question-answering
15
- - text-generation
16
- configs:
17
- - config_name: LexBench-Browser
18
- data_files:
19
- - split: All
20
- path: LexBench-Browser/task.jsonl
 
 
 
 
 
 
 
21
  ---
22
 
23
  # LexBench-Browser
24
 
25
- LexBench-Browser is a benchmark for evaluating AI browser agents on real-world web tasks across 50+ Chinese and English websites — e-commerce, social, video, tools/education, finance, and more.
 
 
 
26
 
27
- ## Dataset Description
28
 
29
- This release contains **210 tasks** spanning common multi-step browsing flows. None of the tasks gate on user login, so they can be benchmarked end-to-end without manual sign-in.
30
 
31
- ### Dataset Statistics (v3.1, 2026-04-29)
32
 
33
- | Attribute | Value |
34
- |-----------|-------|
35
- | Total tasks | 210 |
36
- | Version | 3.1 |
37
- | Languages | Chinese (137), English (73) |
38
- | `risk_control=true` tasks | 21 |
39
 
40
- #### Task type
41
 
42
- | Type | Count | Description |
43
- |------|-------|-------------|
44
- | T1 | 166 | Information retrieval |
45
- | T2 | 44 | Website operations |
 
46
 
47
- #### Reasoning type
48
 
49
- | Reasoning | Count |
50
- |-----------|-------|
51
- | single_step | 117 |
52
- | multi_step | 70 |
53
- | deep_analysis | 23 |
54
 
55
- #### Domain Distribution
 
 
 
 
 
 
 
56
 
57
- | Domain | Count |
58
- |--------|-------|
59
- | finance_gaming | 44 |
60
- | video_platform | 42 |
61
- | tools_education | 40 |
62
- | general | 34 |
63
- | social_lifestyle | 26 |
64
- | ecommerce | 23 |
65
- | gaming | 1 |
66
 
67
- ## Download
 
 
 
 
68
 
69
- ### Using Hugging Face Datasets
70
 
71
- ```python
72
- from datasets import load_dataset
73
 
74
- dataset = load_dataset("Lexmount/LexBench-Browser")
75
- all_tasks = dataset["All"]
76
- print(all_tasks[0])
77
- ```
 
 
 
 
 
 
 
 
 
 
78
 
79
- ### For Users in China (Mirror)
80
 
81
- ```python
82
- import os
83
- os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
84
 
85
- from datasets import load_dataset
86
- dataset = load_dataset("Lexmount/LexBench-Browser")
87
- ```
 
88
 
89
- Or set the variable before running:
90
 
91
- ```bash
92
- export HF_ENDPOINT=https://hf-mirror.com
93
- python your_script.py
94
- ```
 
95
 
96
- ### Manual Download
97
 
98
- ```bash
99
- pip install huggingface_hub
100
- huggingface-cli download Lexmount/LexBench-Browser --repo-type dataset --local-dir ./data
101
- ```
 
 
 
 
 
 
 
 
 
102
 
103
- For China users:
 
 
 
 
 
 
 
104
 
105
  ```bash
106
- export HF_ENDPOINT=https://hf-mirror.com
107
- huggingface-cli download Lexmount/LexBench-Browser --repo-type dataset --local-dir ./data
 
 
108
  ```
109
 
110
- ## Task Format
111
-
112
- ```json
113
- {
114
- "id": 1,
115
- "query": "Task description",
116
- "task_type": "T1",
117
- "reasoning_type": "multi_step",
118
- "domain": "ecommerce",
119
- "difficulty": "medium",
120
- "login_required": false,
121
- "login_type": "",
122
- "risk_control": false,
123
- "risk_control_types": [],
124
- "target_website": "www.example.com",
125
- "language": "zh",
126
- "website_region": "zh",
127
- "reference_answer": {
128
- "steps": ["Step 1", "Step 2"],
129
- "key_points": ["Key point 1"],
130
- "common_mistakes": ["Common mistake 1"],
131
- "scoring": {
132
- "total": 100,
133
- "items": [{"name": "...", "score": 30, "description": "..."}]
134
- }
135
- },
136
- "score_threshold": 60,
137
- "robustness_tags": ["chinese_rendering", "data_extraction"]
138
- }
139
- ```
140
 
141
- ### Field descriptions
142
 
143
- - **task_type**: `T1` (information retrieval) or `T2` (website operations).
144
- - **reasoning_type**: `single_step` | `multi_step` | `cross_platform` | `deep_analysis`.
145
- - **domain**: business domain (`ecommerce`, `social_lifestyle`, `video_platform`, `tools_education`, `finance_gaming`, `general`, `gaming`).
146
- - **difficulty**: `easy` | `medium` | `hard`.
147
- - **language**: task description language (`zh` for Chinese, `en` for English).
148
- - **website_region**: target website region (`zh` for Chinese sites, `en` for international sites).
149
- - **login_required**: whether the task is login-gated (always `false` in this release).
150
- - **risk_control** / **risk_control_types**: whether the target site applies anti-crawl / risk-control mechanisms (CAPTCHA, slider verification, anti-bot, rate-limiting).
151
- - **target_website**: a single hostname, or for multi-site tasks, hostnames separated by `+` (e.g. `movie.douban.com + www.imdb.com`).
152
- - **robustness_tags**: ordered, deduplicated list across 6 categories / 16 tags (popup interference, sequence complexity, content dynamics, anti-crawl, localization, complex interaction).
153
 
154
- > **Migration note (v2.x → v3.x)**: the per-record `scenario_tier` field has been removed and the per-tier files (`l1.jsonl`, `l2.jsonl`, `l3-api.jsonl`, `l3-security.jsonl`, `tasks.jsonl`) have been replaced by a single `task.jsonl`. Slice the data with `login_required`, `domain`, or `risk_control` instead.
 
 
155
 
156
- ## License
157
 
158
- Apache 2.0
 
 
 
 
 
 
 
159
 
160
  ## Citation
161
 
162
- ```bibtex
163
- @misc{lexbench-browser-2026,
164
- title={LexBench-Browser: A Benchmark for Web Browsing AI Agents},
165
- author={Lexmount},
166
- year={2026},
167
- publisher={Hugging Face},
168
- url={https://huggingface.co/datasets/Lexmount/LexBench-Browser}
169
- }
170
- ```
 
1
  ---
 
2
  language:
3
+ - zh
4
+ - en
5
+ license: cc-by-4.0
 
 
 
 
 
 
6
  task_categories:
7
+ - question-answering
8
+ - text-generation
9
+ - reinforcement-learning
10
+ task_ids:
11
+ - web-agent-benchmark
12
+ pretty_name: LexBench-Browser
13
+ size_categories:
14
+ - n<1K
15
+ tags:
16
+ - browser-agent
17
+ - web-agent
18
+ - benchmark
19
+ - evaluation
20
+ - automation
21
  ---
22
 
23
  # LexBench-Browser
24
 
25
+ LexBench-Browser is a public benchmark for evaluating browser agents on real-web workflows. The
26
+ v1.0 snapshot contains 210 no-login tasks across 107 distinct websites, with Chinese and English
27
+ instructions, task-level reference steps, key points, common mistakes, scoring rubrics, and
28
+ robustness tags.
29
 
30
+ Repository: https://github.com/lexmount/browseruse-agent-bench
31
 
32
+ Dataset page: https://huggingface.co/datasets/Lexmount/LexBench-Browser
33
 
34
+ Docs: https://docs.bubench.lexmount.io/
35
 
36
+ ## Dataset Summary
 
 
 
 
 
37
 
38
+ LexBench-Browser is designed for browser-agent engineering:
39
 
40
+ - run an agent against real websites
41
+ - compare local and cloud browser backends
42
+ - evaluate task success with a declared judge strategy
43
+ - inspect trajectories and failure modes
44
+ - submit reproducible leaderboard results
45
 
46
+ The dataset does not require login for the v1.0 public snapshot.
47
 
48
+ ## Files
 
 
 
 
49
 
50
+ ```text
51
+ LexBench-Browser/
52
+ |-- data_info.json
53
+ |-- task.jsonl
54
+ |-- task_global.jsonl
55
+ |-- task_lexmount.jsonl
56
+ `-- VERSION_HISTORY.md
57
+ ```
58
 
59
+ Splits:
 
 
 
 
 
 
 
 
60
 
61
+ | Split | File | Tasks | Notes |
62
+ | --- | --- | ---: | --- |
63
+ | `All` | `task.jsonl` | 210 | Default public v1.0 split |
64
+ | `global` | `task_global.jsonl` | 92 | Global-region task subset |
65
+ | `lexmount` | `task_lexmount.jsonl` | 118 | Lexmount-region task subset |
66
 
67
+ ## Fields
68
 
69
+ Each JSONL row includes:
 
70
 
71
+ - `id`: stable task id
72
+ - `query`: user-facing browser task
73
+ - `task_type`: task type label
74
+ - `domain`: domain category
75
+ - `difficulty`: `easy`, `medium`, or `hard`
76
+ - `login_required`: whether login is required
77
+ - `risk_control`: whether the task has risk-control constraints
78
+ - `target_website`: intended website or website family
79
+ - `reasoning_type`: reasoning complexity label
80
+ - `language`: `zh` or `en`
81
+ - `website_region`: expected region/language context
82
+ - `reference_answer`: reference steps, key points, common mistakes, and scoring rubric
83
+ - `score_threshold`: pass threshold
84
+ - `robustness_tags`: practical browser-agent stressors
85
 
86
+ ## Label Distribution
87
 
88
+ Language:
 
 
89
 
90
+ | Language | Tasks |
91
+ | --- | ---: |
92
+ | `zh` | 137 |
93
+ | `en` | 73 |
94
 
95
+ Reasoning type:
96
 
97
+ | Reasoning type | Tasks |
98
+ | --- | ---: |
99
+ | `single_step` | 117 |
100
+ | `multi_step` | 70 |
101
+ | `deep_analysis` | 23 |
102
 
103
+ Domain:
104
 
105
+ | Domain | Tasks |
106
+ | --- | ---: |
107
+ | `finance_gaming` | 44 |
108
+ | `video_platform` | 42 |
109
+ | `tools_education` | 40 |
110
+ | `general` | 34 |
111
+ | `social_lifestyle` | 26 |
112
+ | `ecommerce` | 23 |
113
+ | `gaming` | 1 |
114
+
115
+ ## Robustness Tags
116
+
117
+ Tags cover:
118
 
119
+ - popup interference: `login_popup`, `cookie_consent`, `ad_overlay`
120
+ - sequence complexity: `long_sequence`, `deep_navigation`, `multi_site`
121
+ - content dynamics: `realtime_data`, `lazy_load_scroll`, `iframe_embed`
122
+ - anti-crawl behavior: `captcha_verification`, `anti_bot`, `rate_limiting`
123
+ - localization: `chinese_rendering`, `cross_language`
124
+ - complex interaction: `filter_sort`, `data_extraction`
125
+
126
+ ## Usage
127
 
128
  ```bash
129
+ git clone https://github.com/lexmount/browseruse-agent-bench.git
130
+ cd browseruse-agent-bench
131
+ uv sync --extra browser-use
132
+ uv run bubench run --agent browser-use --data LexBench-Browser --mode first_n --count 3
133
  ```
134
 
135
+ For official leaderboard submissions, follow the repository evaluation protocol and result
136
+ submission docs.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
+ ## Licensing
139
 
140
+ The LexBench-Browser benchmark metadata and task definitions are released under CC-BY 4.0.
 
 
 
 
 
 
 
 
 
141
 
142
+ This license covers the curated task records, labels, reference steps, scoring rubrics, and
143
+ metadata authored for the benchmark. It does not relicense third-party website content,
144
+ screenshots, traces, marks, page text, or other artifacts collected while running agents.
145
 
146
+ Repository code is licensed separately under Apache-2.0.
147
 
148
+ ## Limitations
149
+
150
+ - Real websites change over time, so tasks may become easier, harder, or temporarily unavailable.
151
+ - Some websites may show region-specific content, anti-bot interstitials, cookie banners, or
152
+ localized layouts.
153
+ - The public v1.0 snapshot avoids login-required tasks.
154
+ - Automated judge results should be interpreted with the declared judge model, prompt strategy,
155
+ benchmark version, and browser backend.
156
 
157
  ## Citation
158
 
159
+ Use the repository `CITATION.cff` for citation metadata.