waple0820 commited on
Commit
ccfb2bc
·
verified ·
1 Parent(s): 8656706

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. LexBench-Browser/l1.jsonl +0 -0
  2. README.md +162 -3
LexBench-Browser/l1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
README.md CHANGED
@@ -1,3 +1,162 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 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
+
53
+ ### Using Hugging Face Datasets
54
+
55
+ ```python
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'
72
+
73
+ 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
81
+ python your_script.py
82
+ ```
83
+
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",
118
+ "reference_answer": {
119
+ "steps": ["Step 1", "Step 2"],
120
+ "key_points": ["Key point 1"],
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
+
148
+ 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},
157
+ author={Lexmount},
158
+ year={2026},
159
+ publisher={Hugging Face},
160
+ url={https://huggingface.co/datasets/Lexmount/LexBench-Browser}
161
+ }
162
+ ```