Image-Text-to-Text
Transformers
Safetensors
English
qwen2_vl
multimodal
gui
conversational
text-generation-inference
Instructions to use ByteDance-Seed/UI-TARS-7B-DPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ByteDance-Seed/UI-TARS-7B-DPO with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="ByteDance-Seed/UI-TARS-7B-DPO") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("ByteDance-Seed/UI-TARS-7B-DPO") model = AutoModelForImageTextToText.from_pretrained("ByteDance-Seed/UI-TARS-7B-DPO") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ByteDance-Seed/UI-TARS-7B-DPO with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ByteDance-Seed/UI-TARS-7B-DPO" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ByteDance-Seed/UI-TARS-7B-DPO", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/ByteDance-Seed/UI-TARS-7B-DPO
- SGLang
How to use ByteDance-Seed/UI-TARS-7B-DPO with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ByteDance-Seed/UI-TARS-7B-DPO" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ByteDance-Seed/UI-TARS-7B-DPO", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ByteDance-Seed/UI-TARS-7B-DPO" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ByteDance-Seed/UI-TARS-7B-DPO", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use ByteDance-Seed/UI-TARS-7B-DPO with Docker Model Runner:
docker model run hf.co/ByteDance-Seed/UI-TARS-7B-DPO
Add paper link
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,196 +1,125 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
language:
|
| 4 |
-
- en
|
| 5 |
-
pipeline_tag: image-text-to-text
|
| 6 |
-
tags:
|
| 7 |
-
- multimodal
|
| 8 |
-
- gui
|
| 9 |
-
library_name: transformers
|
| 10 |
-
---
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
[UI-TARS-2B-
|
| 15 |
-
[UI-TARS-
|
| 16 |
-
[UI-TARS-7B-
|
| 17 |
-
[UI-TARS-7B-
|
| 18 |
-
[UI-TARS-
|
| 19 |
-
[UI-TARS-72B-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
<
|
| 26 |
-
|
| 27 |
-
<
|
| 28 |
-
<p
|
| 29 |
-
|
| 30 |
-
<
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
| 39 |
-
|
|
| 40 |
-
|
|
| 41 |
-
|
|
| 42 |
-
|
|
| 43 |
-
|
|
| 44 |
-
|
|
| 45 |
-
|
|
| 46 |
-
| **UI-TARS-
|
| 47 |
-
| **UI-TARS-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
|
| 54 |
-
|
|
| 55 |
-
|
|
| 56 |
-
|
|
| 57 |
-
|
|
| 58 |
-
|
|
| 59 |
-
|
|
| 60 |
-
|
|
| 61 |
-
|
|
| 62 |
-
|
|
| 63 |
-
|
|
| 64 |
-
|
|
| 65 |
-
|
|
| 66 |
-
|
|
| 67 |
-
| **UI-TARS-
|
| 68 |
-
| **UI-TARS-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
|
| 75 |
-
|
|
| 76 |
-
|
|
| 77 |
-
| GPT-
|
| 78 |
-
| GPT-
|
| 79 |
-
| GPT-4o (
|
| 80 |
-
|
|
| 81 |
-
|
|
| 82 |
-
|
|
| 83 |
-
|
|
| 84 |
-
|
|
| 85 |
-
|
|
| 86 |
-
|
|
| 87 |
-
|
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
|
| 93 |
-
|
|
| 94 |
-
| **
|
| 95 |
-
|
|
| 96 |
-
|
|
| 97 |
-
|
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
|
| 103 |
-
|-
|
| 104 |
-
|
|
| 105 |
-
|
|
| 106 |
-
|
|
| 107 |
-
|
|
| 108 |
-
| **
|
| 109 |
-
|
|
| 110 |
-
|
|
| 111 |
-
|
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
| GPT-4o (UGround) | 47.7 | - | - | 46.0 | - | - | 46.6 | - | - |
|
| 126 |
-
| GPT-4o (Aria-UI) | 57.6 | - | - | 57.7 | - | - | 61.4 | - | - |
|
| 127 |
-
| GPT-4V (OmniParser) | 42.4 | 87.6 | 39.4 | 41.0 | 84.8 | 36.5 | 45.5 | 85.7 | 42.0 |
|
| 128 |
-
| **Agent Model** | | | | | | | | | |
|
| 129 |
-
| GPT-4o | 5.7 | 77.2 | 4.3 | 5.7 | 79.0 | 3.9 | 5.5 | 86.4 | 4.5 |
|
| 130 |
-
| GPT-4 (SOM) | 29.6 | - | 20.3 | 20.1 | - | 13.9 | 27.0 | - | 23.7 |
|
| 131 |
-
| GPT-3.5 (Text-only) | 19.4 | 59.2 | 16.8 | 14.9 | 56.5 | 14.1 | 25.2 | 57.9 | 24.1 |
|
| 132 |
-
| GPT-4 (Text-only) | 40.8 | 63.1 | 32.3 | 30.2 | 61.0 | 27.0 | 35.4 | 61.9 | 29.7 |
|
| 133 |
-
| Claude | 62.7 | 84.7 | 53.5 | 59.5 | 79.6 | 47.7 | 64.5 | 85.4 | 56.4 |
|
| 134 |
-
| Aguvis-7B | 64.2 | 89.8 | 60.4 | 60.7 | 88.1 | 54.6 | 60.4 | 89.2 | 56.6 |
|
| 135 |
-
| CogAgent | - | - | 62.3 | - | - | 54.0 | - | - | 59.4 |
|
| 136 |
-
| Aguvis-72B | 69.5 | 90.8 | 64.0 | 62.6 | 88.6 | 56.5 | 63.5 | 88.5 | 58.2 |
|
| 137 |
-
| **Our Model** | | | | | | | | | |
|
| 138 |
-
| **UI-TARS-2B** | 62.3 | 90.0 | 56.3 | 58.5 | 87.2 | 50.8 | 58.8 | 89.6 | 52.3 |
|
| 139 |
-
| **UI-TARS-7B** | 73.1 | 92.2 | 67.1 | 68.2 | 90.9 | 61.7 | 66.6 | 90.9 | 60.5 |
|
| 140 |
-
| **UI-TARS-72B** | **74.7** | **92.5** | **68.6** | **72.4** | **91.2** | **63.5** | **68.9** | **91.8** | **62.1** |
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
- **Android Control and GUI Odyssey**
|
| 144 |
-
|
| 145 |
-
| Agent Models | AndroidControl-Low Type | AndroidControl-Low Grounding | AndroidControl-Low SR | AndroidControl-High Type | AndroidControl-High Grounding | AndroidControl-High SR | GUIOdyssey Type | GUIOdyssey Grounding | GUIOdyssey SR |
|
| 146 |
-
|---------------------|----------------------|----------------------|----------------|----------------------|----------------------|----------------|----------------|----------------|----------------|
|
| 147 |
-
| Claude | 74.3 | 0.0 | 19.4 | 63.7 | 0.0 | 12.5 | 60.9 | 0.0 | 3.1 |
|
| 148 |
-
| GPT-4o | 74.3 | 0.0 | 19.4 | 66.3 | 0.0 | 20.8 | 34.3 | 0.0 | 3.3 |
|
| 149 |
-
| SeeClick | 93.0 | 73.4 | 75.0 | 82.9 | 62.9 | 59.1 | 71.0 | 52.4 | 53.9 |
|
| 150 |
-
| InternVL-2-4B | 90.9 | 84.1 | 80.1 | 84.1 | 72.7 | 66.7 | 82.1 | 55.5 | 51.5 |
|
| 151 |
-
| Qwen2-VL-7B | 91.9 | 86.5 | 82.6 | 83.8 | 77.7 | 69.7 | 83.5 | 65.9 | 60.2 |
|
| 152 |
-
| Aria-UI | -- | 87.7 | 67.3 | -- | 43.2 | 10.2 | -- | 86.8 | 36.5 |
|
| 153 |
-
| OS-Atlas-4B | 91.9 | 83.8 | 80.6 | 84.7 | 73.8 | 67.5 | 83.5 | 61.4 | 56.4 |
|
| 154 |
-
| OS-Atlas-7B | 93.6 | 88.0 | 85.2 | 85.2 | 78.5 | 71.2 | 84.5 | 67.8 | 62.0 |
|
| 155 |
-
| Aguvis-7B | -- | -- | 80.5 | -- | -- | 61.5 | -- | -- | -- |
|
| 156 |
-
| Aguvis-72B | -- | -- | 84.4 | -- | -- | 66.4 | -- | -- | -- |
|
| 157 |
-
| **UI-TARS-2B** | **98.1** | 87.3 | 89.3 | 81.2 | 78.4 | 68.9 | 93.9 | 86.8 | 83.4 |
|
| 158 |
-
| **UI-TARS-7B** | 98.0 | 89.3 | 90.8 | 83.7 | 80.5 | 72.5 | 94.6 | 90.1 | 87.0 |
|
| 159 |
-
| **UI-TARS-72B** | **98.1** | **89.9** | **91.3** | **85.2** | **81.5** | **74.7** | **95.4** | **91.4** | **88.6** |
|
| 160 |
-
|
| 161 |
-
**Online Agent Capability Evaluation**
|
| 162 |
-
|
| 163 |
-
| Method | OSWorld (Online) | AndroidWorld (Online) |
|
| 164 |
-
|--------|-------------------|------------------|
|
| 165 |
-
| **Agent Framework** | | |
|
| 166 |
-
| GPT-4o (UGround) | - | 32.8 |
|
| 167 |
-
| GPT-4o (Aria-UI) | 15.2 | 44.8 |
|
| 168 |
-
| GPT-4o (Aguvis-7B) | 14.8 | 37.1 |
|
| 169 |
-
| GPT-4o (Aguvis-72B) | 17.0 | - |
|
| 170 |
-
| GPT-4o (OS-Atlas-7B) | 14.6 | - |
|
| 171 |
-
| **Agent Model** | | |
|
| 172 |
-
| GPT-4o | 5.0 | 34.5 (SoM) |
|
| 173 |
-
| Gemini-Pro-1.5 | 5.4 | 22.8 (SoM) |
|
| 174 |
-
| Aguvis-72B | 10.3 | 26.1 |
|
| 175 |
-
| Claude Computer-Use | 14.9 (15 steps) | 27.9 |
|
| 176 |
-
| Claude Computer-Use | 22.0 (50 steps) | - |
|
| 177 |
-
| **Our Model** | | |
|
| 178 |
-
| **UI-TARS-7B-SFT** | 17.7 (15 steps) | 33.0 |
|
| 179 |
-
| **UI-TARS-7B-DPO** | 18.7 (15 steps) | - |
|
| 180 |
-
| **UI-TARS-72B-SFT** | 18.8 (15 steps) | **46.6** |
|
| 181 |
-
| **UI-TARS-72B-DPO** | **22.7** (15 steps) | - |
|
| 182 |
-
| **UI-TARS-72B-DPO** | **24.6** (50 steps) | - |
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
## Citation
|
| 186 |
-
If you find our paper and model useful in your research, feel free to give us a cite.
|
| 187 |
-
|
| 188 |
-
```BibTeX
|
| 189 |
-
@article{uitars2025,
|
| 190 |
-
author = {Yujia Qin, Yining Ye, Junjie Fang, Haoming Wang, Shihao Liang, Shizuo Tian, Junda Zhang, Jiahao Li, Yunxin Li, Shijue Huang, Wanjun Zhong, Kuanye Li, Jiale Yang, Yu Miao, Woyu Lin, Longxiang Liu, Xu Jiang, Qianli Ma, Jingyu Li, Xiaojun Xiao, Kai Cai, Chuang Li, Yaowei Zheng, Chaolin Jin, Chen Li, Xiao Zhou, Minchao Wang, Haoli Chen, Zhaojian Li, Haihua Yang, Haifeng Liu, Feng Lin, Tao Peng, Xin Liu, Guang Shi},
|
| 191 |
-
title = {UI-TARS: Pioneering Automated GUI Interaction with Native Agents},
|
| 192 |
-
journal = {arXiv preprint arXiv:2501.12326},
|
| 193 |
-
url = {https://github.com/bytedance/UI-TARS},
|
| 194 |
-
year = {2025}
|
| 195 |
-
}
|
| 196 |
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pipeline_tag: image-text-to-text
|
| 6 |
+
tags:
|
| 7 |
+
- multimodal
|
| 8 |
+
- gui
|
| 9 |
+
library_name: transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# UI-TARS-7B-DPO
|
| 13 |
+
[UI-TARS-2B-SFT](https://huggingface.co/bytedance-research/UI-TARS-2B-SFT) |
|
| 14 |
+
[UI-TARS-2B-gguf](https://huggingface.co/bytedance-research/UI-TARS-2B-gguf) |
|
| 15 |
+
[UI-TARS-7B-SFT](https://huggingface.co/bytedance-research/UI-TARS-7B-SFT) |
|
| 16 |
+
[UI-TARS-7B-DPO](https://huggingface.co/bytedance-research/UI-TARS-7B-DPO) |
|
| 17 |
+
[UI-TARS-7B-gguf](https://huggingface.co/bytedance-research/UI-TARS-7B-gguf) |
|
| 18 |
+
[UI-TARS-72B-SFT](https://huggingface.co/bytedance-research/UI-TARS-72B-SFT) |
|
| 19 |
+
[UI-TARS-72B-DPO](https://huggingface.co/bytedance-research/UI-TARS-72B-DPO)
|
| 20 |
+
## Introduction
|
| 21 |
+
|
| 22 |
+
This model card is for the model presented in the paper [UI-TARS: Pioneering Automated GUI Interaction with Native Agents](https://huggingface.co/papers/2501.12326).
|
| 23 |
+
|
| 24 |
+
UI-TARS is a next-generation native GUI agent model designed to interact seamlessly with graphical user interfaces (GUIs) using human-like perception, reasoning, and action capabilities. Unlike traditional modular frameworks, UI-TARS integrates all key components—perception, reasoning, grounding, and memory—within a single vision-language model (VLM), enabling end-to-end task automation without predefined workflows or manual rules.
|
| 25 |
+
<!--  -->
|
| 26 |
+
<p align="center">
|
| 27 |
+
<img src="https://github.com/bytedance/UI-TARS/blob/main/figures/UI-TARS-vs-Previous-SOTA.png?raw=true" width="90%"/>
|
| 28 |
+
<p>
|
| 29 |
+
<p align="center">
|
| 30 |
+
<img src="https://github.com/bytedance/UI-TARS/blob/main/figures/UI-TARS.png?raw=true" width="90%"/>
|
| 31 |
+
<p>
|
| 32 |
+
|
| 33 |
+
<!--  -->
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
## Performance
|
| 37 |
+
**Perception Capabilty Evaluation**
|
| 38 |
+
| Model | VisualWebBench | WebSRC | SQAshort |
|
| 39 |
+
|---------------------------|---------------|---------|----------|
|
| 40 |
+
| Qwen2-VL-7B | 73.3 | 81.8 | 84.9 |
|
| 41 |
+
| Qwen-VL-Max | 74.1 | 91.1 | 78.6 |
|
| 42 |
+
| Gemini-1.5-Pro | 75.4 | 88.9 | 82.2 |
|
| 43 |
+
| UIX-Qwen2-7B | 75.9 | 82.9 | 78.8 |
|
| 44 |
+
| Claude-3.5-Sonnet | 78.2 | 90.4 | 83.1 |
|
| 45 |
+
| GPT-4o | 78.5 | 87.7 | 82.3 |
|
| 46 |
+
| **UI-TARS-2B** | 72.9 | 89.2 | 86.4 |
|
| 47 |
+
| **UI-TARS-7B** | 79.7 | **93.6** | 87.7 |
|
| 48 |
+
| **UI-TARS-72B** | **82.8** | 89.3 | **88.6** |
|
| 49 |
+
|
| 50 |
+
**Grounding Capability Evaluation**
|
| 51 |
+
- **ScreenSpot Pro**
|
| 52 |
+
|
| 53 |
+
| Agent Model | Dev-Text | Dev-Icon | Dev-Avg | Creative-Text | Creative-Icon | Creative-Avg | CAD-Text | CAD-Icon | CAD-Avg | Scientific-Text | Scientific-Icon | Scientific-Avg | Office-Text | Office-Icon | Office-Avg | OS-Text | OS-Icon | OS-Avg | Avg-Text | Avg-Icon | Avg |
|
| 54 |
+
|--------------------------|----------|----------|----------|--------------|--------------|--------------|---------|---------|---------|---------------|---------------|---------------|------------|------------|------------|--------|--------|--------|---------|---------|------|
|
| 55 |
+
| QwenVL-7B | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.7 | 0.0 | 0.4 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.1 | 0.0 | **0.1** |
|
| 56 |
+
| GPT-4o | 1.3 | 0.0 | 0.7 | 1.0 | 0.0 | 0.6 | 2.0 | 0.0 | 1.5 | 2.1 | 0.0 | 1.2 | 1.1 | 0.0 | 0.9 | 0.0 | 0.0 | 0.0 | 1.3 | 0.0 | **0.8** |
|
| 57 |
+
| SeeClick | 0.6 | 0.0 | 0.3 | 1.0 | 0.0 | 0.6 | 2.5 | 0.0 | 1.9 | 3.5 | 0.0 | 2.0 | 1.1 | 0.0 | 0.9 | 2.8 | 0.0 | 1.5 | 1.8 | 0.0 | **1.1** |
|
| 58 |
+
| Qwen2-VL-7B | 2.6 | 0.0 | 1.3 | 1.5 | 0.0 | 0.9 | 0.5 | 0.0 | 0.4 | 6.3 | 0.0 | 3.5 | 3.4 | 1.9 | 3.0 | 0.9 | 0.0 | 0.5 | 2.5 | 0.2 | **1.6** |
|
| 59 |
+
| OS-Atlas-4B | 7.1 | 0.0 | 3.7 | 3.0 | 1.4 | 2.3 | 2.0 | 0.0 | 1.5 | 9.0 | 5.5 | 7.5 | 5.1 | 3.8 | 4.8 | 5.6 | 0.0 | 3.1 | 5.0 | 1.7 | **3.7** |
|
| 60 |
+
| ShowUI-2B | 16.9 | 1.4 | 9.4 | 9.1 | 0.0 | 5.3 | 2.5 | 0.0 | 1.9 | 13.2 | 7.3 | 10.6 | 15.3 | 7.5 | 13.5 | 10.3 | 2.2 | 6.6 | 10.8 | 2.6 | **7.7** |
|
| 61 |
+
| CogAgent-18B | 14.9 | 0.7 | 8.0 | 9.6 | 0.0 | 5.6 | 7.1 | 3.1 | 6.1 | 22.2 | 1.8 | 13.4 | 13.0 | 0.0 | 10.0 | 5.6 | 0.0 | 3.1 | 12.0 | 0.8 | **7.7** |
|
| 62 |
+
| Aria-UI | 16.2 | 0.0 | 8.4 | 23.7 | 2.1 | 14.7 | 7.6 | 1.6 | 6.1 | 27.1 | 6.4 | 18.1 | 20.3 | 1.9 | 16.1 | 4.7 | 0.0 | 2.6 | 17.1 | 2.0 | **11.3** |
|
| 63 |
+
| UGround-7B | 26.6 | 2.1 | 14.7 | 27.3 | 2.8 | 17.0 | 14.2 | 1.6 | 11.1 | 31.9 | 2.7 | 19.3 | 31.6 | 11.3 | 27.0 | 17.8 | 0.0 | 9.7 | 25.0 | 2.8 | **16.5** |
|
| 64 |
+
| Claude Computer Use | 22.0 | 3.9 | 12.6 | 25.9 | 3.4 | 16.8 | 14.5 | 3.7 | 11.9 | 33.9 | 15.8 | 25.8 | 30.1 | 16.3 | 26.9 | 11.0 | 4.5 | 8.1 | 23.4 | 7.1 | **17.1** |
|
| 65 |
+
| OS-Atlas-7B | 33.1 | 1.4 | 17.7 | 28.8 | 2.8 | 17.9 | 12.2 | 4.7 | 10.3 | 37.5 | 7.3 | 24.4 | 33.9 | 5.7 | 27.4 | 27.1 | 4.5 | 16.8 | 28.1 | 4.0 | **18.9** |
|
| 66 |
+
| UGround-V1-7B | - | - | 35.5 | - | - | 27.8 | - | - | 13.5 | - | - | 38.8 | - | - | 48.8 | - | - | 26.1 | - | - | **31.1** |
|
| 67 |
+
| **UI-TARS-2B** | 47.4 | 4.1 | 26.4 | 42.9 | 6.3 | 27.6 | 17.8 | 4.7 | 14.6 | 56.9 | 17.3 | 39.8 | 50.3 | 17.0 | 42.6 | 21.5 | 5.6 | 14.3 | 39.6 | 8.4 | **27.7** |
|
| 68 |
+
| **UI-TARS-7B** | 58.4 | 12.4 | 36.1 | 50.0 | 9.1 | 32.8 | **20.8**| 9.4 | **18.0**| 63.9 | **31.8** | **50.0** | **63.3** | 20.8 | 53.5 | 30.8 | **16.9**| 24.5 | 47.8 | 16.2 | **35.7** |
|
| 69 |
+
| **UI-TARS-72B** | **63.0** | **17.3** | **40.8** | **57.1** | **15.4** | **39.6** | 18.8 | **12.5**| 17.2 | **64.6** | 20.9 | 45.7 | **63.3** | **26.4** | **54.8** | **42.1**| 15.7 | **30.1**| **50.9**| **17.5**| **38.1** |
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
- **ScreenSpot v2**
|
| 73 |
+
|
| 74 |
+
| Method | Mobile-Text | Mobile-Icon/Widget | Desktop-Text | Desktop-Icon/Widget | Web-Text | Web-Icon/Widget | Avg |
|
| 75 |
+
|--------|-------------|-------------|-------------|-------------|-------------|---------|---------|
|
| 76 |
+
| **Agent Framework** | | | | | | | |
|
| 77 |
+
| GPT-4o (SeeClick) | 85.2 | 58.8 | 79.9 | 37.1 | 72.7 | 30.1 | **63.6** |
|
| 78 |
+
| GPT-4o (OS-Atlas-4B) | 95.5 | 75.8 | 79.4 | 49.3 | 90.2 | 66.5 | **79.1** |
|
| 79 |
+
| GPT-4o (OS-Atlas-7B) | 96.2 | 83.4 | 89.7 | 69.3 | **94.0** | 79.8 | **87.1** |
|
| 80 |
+
| **Agent Model** | | | | | | | |
|
| 81 |
+
| SeeClick | 78.4 | 50.7 | 70.1 | 29.3 | 55.2 | 32.5 | **55.1** |
|
| 82 |
+
| OS-Atlas-4B | 87.2 | 59.7 | 72.7 | 46.4 | 85.9 | 63.1 | **71.9** |
|
| 83 |
+
| OS-Atlas-7B | 95.2 | 75.8 | 90.7 | 63.6 | 90.6 | 77.3 | **84.1** |
|
| 84 |
+
| **Our Model** | | | | | | | |
|
| 85 |
+
| **UI-TARS-2B** | 95.2 | 79.1 | 90.7 | 68.6 | 87.2 | 78.3 | **84.7** |
|
| 86 |
+
| **UI-TARS-7B** | **96.9** | **89.1** | **95.4** | 85.7 | 93.6 | 85.2 | **91.6** |
|
| 87 |
+
| **UI-TARS-72B** | 94.8 | 86.3 | 91.2 | **87.9** | 91.5 | **87.7** | **90.3** |
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
**Online Agent Capability Evaluation**
|
| 91 |
+
|
| 92 |
+
| Method | OSWorld (Online) | AndroidWorld (Online) |
|
| 93 |
+
|--------|-------------------|------------------|
|
| 94 |
+
| **Agent Framework** | | |
|
| 95 |
+
| GPT-4o (UGround) | - | 32.8 |
|
| 96 |
+
| GPT-4o (Aria-UI) | 15.2 | 44.8 |
|
| 97 |
+
| GPT-4o (Aguvis-7B) | 14.8 | 37.1 |
|
| 98 |
+
| GPT-4o (Aguvis-72B) | 17.0 | - |
|
| 99 |
+
| GPT-4o (OS-Atlas-7B) | 14.6 | - |
|
| 100 |
+
| **Agent Model** | | |
|
| 101 |
+
| GPT-4o | 5.0 | 34.5 (SoM) |
|
| 102 |
+
| Gemini-Pro-1.5 | 5.4 | 22.8 (SoM) |
|
| 103 |
+
| Aguvis-72B | 10.3 | 26.1 |
|
| 104 |
+
| Claude Computer-Use | 14.9 (15 steps) | 27.9 |
|
| 105 |
+
| Claude Computer-Use | 22.0 (50 steps) | - |
|
| 106 |
+
| **Our Model** | | |
|
| 107 |
+
| **UI-TARS-7B-SFT** | 17.7 (15 steps) | 33.0 |
|
| 108 |
+
| **UI-TARS-7B-DPO** | 18.7 (15 steps) | - |
|
| 109 |
+
| **UI-TARS-72B-SFT** | 18.8 (15 steps) | **46.6** |
|
| 110 |
+
| **UI-TARS-72B-DPO** | **22.7** (15 steps) | - |
|
| 111 |
+
| **UI-TARS-72B-DPO** | **24.6** (50 steps) | - |
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
## Citation
|
| 115 |
+
If you find our paper and model useful in your research, feel free to give us a cite.
|
| 116 |
+
|
| 117 |
+
```BibTeX
|
| 118 |
+
@article{uitars2025,
|
| 119 |
+
author = {Yujia Qin, Yining Ye, Junjie Fang, Haoming Wang, Shihao Liang, Shizuo Tian, Junda Zhang, Jiahao Li, Yunxin Li, Shijue Huang, Wanjun Zhong, Kuanye Li, Jiale Yang, Yu Miao, Woyu Lin, Longxiang Liu, Xu Jiang, Qianli Ma, Jingyu Li, Xiaojun Xiao, Kai Cai, Chuang Li, Yaowei Zheng, Chaolin Jin, Chen Li, Xiao Zhou, Minchao Wang, Haoli Chen, Zhaojian Li, Haihua Yang, Haifeng Liu, Feng Lin, Tao Peng, Xin Liu, Guang Shi},
|
| 120 |
+
title = {UI-TARS: Pioneering Automated GUI Interaction with Native Agents},
|
| 121 |
+
journal = {arXiv preprint arXiv:2501.12326},
|
| 122 |
+
url = {https://github.com/bytedance/UI-TARS},
|
| 123 |
+
year = {2025}
|
| 124 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
```
|