waple0820 commited on
Commit
7e213a8
·
verified ·
1 Parent(s): 3cdc93a

docs: refresh README for v3.0 (single task.jsonl, 220 tasks, no scenario_tier)

Browse files
Files changed (1) hide show
  1. README.md +52 -45
README.md CHANGED
@@ -16,37 +16,52 @@ task_categories:
16
  configs:
17
  - config_name: LexBench-Browser
18
  data_files:
19
- - split: l1
20
- path: LexBench-Browser/l1.jsonl
21
  ---
22
 
23
  # LexBench-Browser
24
 
25
- A public subset of LexBench-Browser benchmark for evaluating AI agents on web browsing tasks.
26
 
27
  ## Dataset Description
28
 
29
- LexBench-Browser is a benchmark designed to evaluate AI Agents on real-world web browsing tasks. This public subset contains **187 tasks** that do not require login credentials, making them suitable for open evaluation.
30
 
31
- ### Dataset Statistics
32
 
33
  | Attribute | Value |
34
  |-----------|-------|
35
- | Total Tasks | 187 |
36
- | Version | 2.0 |
37
- | Scenario Tier | L1 (No login required) |
38
- | Languages | Chinese (115), English (72) |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
  #### Domain Distribution
41
 
42
  | Domain | Count |
43
  |--------|-------|
44
- | ecommerce | 25 |
45
- | finance_gaming | 41 |
46
- | general | 6 |
47
- | social_lifestyle | 28 |
48
- | tools_education | 44 |
49
- | video_platform | 43 |
 
50
 
51
  ## Download
52
 
@@ -56,16 +71,12 @@ LexBench-Browser is a benchmark designed to evaluate AI Agents on real-world web
56
  from datasets import load_dataset
57
 
58
  dataset = load_dataset("Lexmount/LexBench-Browser")
59
-
60
- # Access a specific split
61
- l1_tasks = dataset["l1"]
62
- print(l1_tasks[0])
63
  ```
64
 
65
  ### For Users in China (Mirror)
66
 
67
- If you have difficulty accessing Hugging Face, use the mirror:
68
-
69
  ```python
70
  import os
71
  os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
@@ -74,7 +85,7 @@ from datasets import load_dataset
74
  dataset = load_dataset("Lexmount/LexBench-Browser")
75
  ```
76
 
77
- Or set environment variable before running:
78
 
79
  ```bash
80
  export HF_ENDPOINT=https://hf-mirror.com
@@ -84,34 +95,29 @@ python your_script.py
84
  ### Manual Download
85
 
86
  ```bash
87
- # Install huggingface-cli if not installed
88
  pip install huggingface_hub
89
-
90
- # Download dataset
91
  huggingface-cli download Lexmount/LexBench-Browser --repo-type dataset --local-dir ./data
92
  ```
93
 
94
  For China users:
 
95
  ```bash
96
  export HF_ENDPOINT=https://hf-mirror.com
97
  huggingface-cli download Lexmount/LexBench-Browser --repo-type dataset --local-dir ./data
98
  ```
99
 
100
-
101
- ### Task Format
102
-
103
- Each task contains the following fields:
104
 
105
  ```json
106
  {
107
  "id": 1,
108
  "query": "Task description",
109
- "scenario_tier": "L1",
110
  "task_type": "T1",
111
  "reasoning_type": "multi_step",
112
  "domain": "ecommerce",
113
  "difficulty": "medium",
114
  "login_required": false,
 
115
  "target_website": "www.example.com",
116
  "language": "zh",
117
  "website_region": "zh",
@@ -121,27 +127,30 @@ Each task contains the following fields:
121
  "common_mistakes": ["Common mistake 1"],
122
  "scoring": {
123
  "total": 100,
124
- "items": [{"name": "...", "score": 30, "description": "..."}],
125
- "deductions": [{"reason": "...", "penalty": 20}]
126
  }
127
- }
 
 
128
  }
129
  ```
130
 
131
- ### Field Descriptions
 
 
 
 
 
 
 
 
 
132
 
133
- - **scenario_tier**: `L1` - Tasks that do not require login
134
- - **task_type**: `T1` (Information retrieval) or `T2` (Operation execution)
135
- - **reasoning_type**: `single_step`, `multi_step`, `cross_platform`, or `deep_analysis`
136
- - **domain**: Business domain (ecommerce, social_lifestyle, video_platform, etc.)
137
- - **difficulty**: `easy`, `medium`, or `hard`
138
- - **language**: Task description language (`zh` for Chinese, `en` for English)
139
- - **website_region**: Target website region (`zh` for Chinese sites, `en` for international sites)
140
 
141
  ## Related Resources
142
 
143
- - [LexBench-Browser-Private](https://huggingface.co/datasets/Lexmount/LexBench-Browser-Private) - Private subset requiring login (L2/L3)
144
- - [LexBench-Online-Mind2Web](https://huggingface.co/datasets/Lexmount/LexBench-Online-Mind2Web) - Online Mind2Web benchmark
145
 
146
  ## License
147
 
@@ -149,8 +158,6 @@ Apache 2.0
149
 
150
  ## Citation
151
 
152
- If you use this dataset, please cite:
153
-
154
  ```bibtex
155
  @misc{lexbench-browser-2026,
156
  title={LexBench-Browser: A Benchmark for Web Browsing AI Agents},
 
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
+ Public release of the LexBench-Browser benchmark for evaluating AI browser agents on real-world web tasks.
26
 
27
  ## Dataset Description
28
 
29
+ LexBench-Browser evaluates AI agents on multi-step browsing tasks across 50+ Chinese and English websites — e-commerce, social, video, tools/education, finance, and more. This public release contains **220 tasks** that do not gate on user login, suitable for open evaluation. The full dataset (including login-gated tasks) is available in the private mirror.
30
 
31
+ ### Dataset Statistics (v3.0, 2026-04-28)
32
 
33
  | Attribute | Value |
34
  |-----------|-------|
35
+ | Total tasks | 220 |
36
+ | Version | 3.0 |
37
+ | Languages | Chinese (142), English (78) |
38
+
39
+ #### Task type
40
+
41
+ | Type | Count | Description |
42
+ |------|-------|-------------|
43
+ | T1 | 175 | Information retrieval |
44
+ | T2 | 45 | Website operations |
45
+
46
+ #### Reasoning type
47
+
48
+ | Reasoning | Count |
49
+ |-----------|-------|
50
+ | single_step | 122 |
51
+ | multi_step | 74 |
52
+ | deep_analysis | 24 |
53
 
54
  #### Domain Distribution
55
 
56
  | Domain | Count |
57
  |--------|-------|
58
+ | finance_gaming | 45 |
59
+ | video_platform | 44 |
60
+ | tools_education | 41 |
61
+ | general | 34 |
62
+ | social_lifestyle | 31 |
63
+ | ecommerce | 24 |
64
+ | gaming | 1 |
65
 
66
  ## Download
67
 
 
71
  from datasets import load_dataset
72
 
73
  dataset = load_dataset("Lexmount/LexBench-Browser")
74
+ all_tasks = dataset["All"]
75
+ print(all_tasks[0])
 
 
76
  ```
77
 
78
  ### For Users in China (Mirror)
79
 
 
 
80
  ```python
81
  import os
82
  os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
 
85
  dataset = load_dataset("Lexmount/LexBench-Browser")
86
  ```
87
 
88
+ Or set the variable before running:
89
 
90
  ```bash
91
  export HF_ENDPOINT=https://hf-mirror.com
 
95
  ### Manual Download
96
 
97
  ```bash
 
98
  pip install huggingface_hub
 
 
99
  huggingface-cli download Lexmount/LexBench-Browser --repo-type dataset --local-dir ./data
100
  ```
101
 
102
  For China users:
103
+
104
  ```bash
105
  export HF_ENDPOINT=https://hf-mirror.com
106
  huggingface-cli download Lexmount/LexBench-Browser --repo-type dataset --local-dir ./data
107
  ```
108
 
109
+ ## Task Format
 
 
 
110
 
111
  ```json
112
  {
113
  "id": 1,
114
  "query": "Task description",
 
115
  "task_type": "T1",
116
  "reasoning_type": "multi_step",
117
  "domain": "ecommerce",
118
  "difficulty": "medium",
119
  "login_required": false,
120
+ "login_type": "",
121
  "target_website": "www.example.com",
122
  "language": "zh",
123
  "website_region": "zh",
 
127
  "common_mistakes": ["Common mistake 1"],
128
  "scoring": {
129
  "total": 100,
130
+ "items": [{"name": "...", "score": 30, "description": "..."}]
 
131
  }
132
+ },
133
+ "score_threshold": 60,
134
+ "robustness_tags": ["chinese_rendering", "data_extraction"]
135
  }
136
  ```
137
 
138
+ ### Field descriptions
139
+
140
+ - **task_type**: `T1` (information retrieval) or `T2` (website operations).
141
+ - **reasoning_type**: `single_step` | `multi_step` | `cross_platform` | `deep_analysis`.
142
+ - **domain**: business domain (`ecommerce`, `social_lifestyle`, `video_platform`, `tools_education`, `finance_gaming`, `general`, `gaming`).
143
+ - **difficulty**: `easy` | `medium` | `hard`.
144
+ - **language**: task description language (`zh` for Chinese, `en` for English).
145
+ - **website_region**: target website region (`zh` for Chinese sites, `en` for international sites).
146
+ - **login_required**: whether the task is login-gated. Almost all public tasks are `false`; a small number of API-style tasks are `true`.
147
+ - **robustness_tags**: ordered, deduplicated list across 6 categories / 16 tags (popup interference, sequence complexity, content dynamics, anti-crawl, localization, complex interaction).
148
 
149
+ > **Migration note (v2.x → v3.0)**: 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.
 
 
 
 
 
 
150
 
151
  ## Related Resources
152
 
153
+ - [Lexmount/LexBench-Browser-Private](https://huggingface.co/datasets/Lexmount/LexBench-Browser-Private) full dataset including login-gated tasks (377 tasks).
 
154
 
155
  ## License
156
 
 
158
 
159
  ## Citation
160
 
 
 
161
  ```bibtex
162
  @misc{lexbench-browser-2026,
163
  title={LexBench-Browser: A Benchmark for Web Browsing AI Agents},