Safetensors
English
agent
browser
web
sft
cogito233 commited on
Commit
35ebc6b
·
verified ·
1 Parent(s): 02ce0f9

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - TIGER-Lab/BrowserAgent-SFT-Data
5
+ language:
6
+ - en
7
+ base_model:
8
+ - Qwen/Qwen2.5-7B-Instruct
9
+ metrics:
10
+ - success_rate
11
+ - trajectory_f1
12
+ tags:
13
+ - agent
14
+ - browser
15
+ - web
16
+ - sft
17
+ ---
18
+
19
+ ## Model
20
+ We release the **SFT (Supervised Fine-Tuned)** model used in **BrowserAgent**, based on `Qwen/Qwen2.5-7B-Instruct`.
21
+ This model learns structured web-browsing behaviors—such as **click, type, scroll, read, submit**—from human-style demonstrations and produces **schema-constrained action sequences** for browser environments.
22
+
23
+ ## Paper
24
+ [BrowserAgent: Building Web Agents with Human-Inspired Web Browsing Actions](https://arxiv.org/abs/2510.10666)
25
+
26
+ ## Project Page
27
+ <https://tiger-ai-lab.github.io/BrowserAgent/>
28
+
29
+ ## Code
30
+ <https://github.com/TIGER-AI-Lab/BrowserAgent>
31
+
32
+ ## Sample Usage
33
+ ```bash
34
+ hf download TIGER-Lab/BrowserAgent-SFT --local-dir ./models/browseragent-sft --repo model
35
+ ```
36
+
37
+ ## Citation
38
+ ```bibtex
39
+ @misc{yu2025browseragentbuildingwebagents,
40
+ title={BrowserAgent: Building Web Agents with Human-Inspired Web Browsing Actions},
41
+ author={Tao Yu and Zhengbo Zhang and Zhiheng Lyu and Junhao Gong and Hongzhu Yi and Xinming Wang and Yuxuan Zhou and Jiabing Yang and Ping Nie and Yan Huang and Wenhu Chen},
42
+ year={2025},
43
+ eprint={2510.10666},
44
+ archivePrefix={arXiv},
45
+ primaryClass={cs.CL},
46
+ url={https://arxiv.org/abs/2510.10666},
47
+ }
48
+ ```