Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,44 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- Qwen/Qwen2.5-32B-Instruct
|
7 |
+
---
|
8 |
+
|
9 |
+
# AgentTrek: Agent Trajectory Synthesis via Guiding Replay with Web Tutorials
|
10 |
+
|
11 |
+
<div align="center">
|
12 |
+
|
13 |
+
[\[🏠Homepage\]](https://agenttrek.github.io/) [\[💻Code\]](https://github.com/xlang-ai/AgentTrek) [\[📝Paper\]](https://arxiv.org/abs/2412.19723) [\[🤗Models\]](https://huggingface.co/collections/OS-Copilot/os-genesis-6768d4b6fffc431dbf624c2d)[\[🤗Data\]](https://huggingface.co/collections/ranpox/aguvis-unified-pure-vision-gui-agents-6764e2bc343c62af95c209d8)
|
14 |
+
|
15 |
+
</div>
|
16 |
+
|
17 |
+
## Overview of Pipeline
|
18 |
+
|
19 |
+

|
20 |
+
|
21 |
+
AgentTrek is a cost-efficient and scalable framework that synthesizes high-quality agent trajectories by guiding replay with web tutorials. These collected trajectories significantly enhance agent performance.
|
22 |
+
|
23 |
+
## Quick Start
|
24 |
+
|
25 |
+
**AgentTrek-1.0-32B** is a web agent model finetuned from [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct).
|
26 |
+
|
27 |
+

|
28 |
+
|
29 |
+
- For metrics, refers to [Browsergym Leaderboard](https://huggingface.co/spaces/ServiceNow/browsergym-leaderboard)
|
30 |
+
- For evaluation, refers to [Evaluation Script](https://github.com/xlang-ai/AgentTrek)
|
31 |
+
- For training dataset, refers to [Training Dataset]()
|
32 |
+
|
33 |
+
## Citation
|
34 |
+
```bibtex
|
35 |
+
@article{xu2024agenttrek,
|
36 |
+
author = {Yiheng Xu and Dunjie Lu and Zhennan Shen and Junli Wang and Zekun Wang and Yuchen Mao and Caiming Xiong and Tao Yu},
|
37 |
+
title = {AgentTrek: Agent Trajectory Synthesis via Guiding Replay with Web Tutorials},
|
38 |
+
year={2024},
|
39 |
+
eprint={2412.09605},
|
40 |
+
archivePrefix={arXiv},
|
41 |
+
primaryClass={cs.CL},
|
42 |
+
url={https://arxiv.org/abs/2412.09605}
|
43 |
+
}
|
44 |
+
```
|