Update README.md
#2
by
flyingmelon97 - opened
README.md
CHANGED
|
@@ -6,6 +6,61 @@ tags:
|
|
| 6 |
- arxiv:2602.16855
|
| 7 |
---
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
## Citation
|
| 11 |
|
|
|
|
| 6 |
- arxiv:2602.16855
|
| 7 |
---
|
| 8 |
|
| 9 |
+
## Introduction
|
| 10 |
+
<img src="https://github.com/X-PLUG/MobileAgent/blob/main/Mobile-Agent-v3.5/assets/gui_owl_15_logo.png?raw=true" width="80%"/>
|
| 11 |
+
|
| 12 |
+
GUI-Owl 1.5 is the next-generation native GUI agent model family built on Qwen3-VL. It supports multi-platform GUI automation across desktops, mobile devices, browsers, and more. Powered by a scalable hybrid data flywheel, unified agent capability enhancement, and multi-platform environment RL (MRPO), GUI-Owl 1.5 offers a full spectrum of models.
|
| 13 |
+
|
| 14 |
+
* **Paper**: https://arxiv.org/abs/2602.16855
|
| 15 |
+
* **GitHub Repository**: https://github.com/X-PLUG/MobileAgent
|
| 16 |
+
* **Online Demo**: http://modelscope.cn/studios/MobileAgentTest/computer_use
|
| 17 |
+
|
| 18 |
+
**Key highlights:**
|
| 19 |
+
- 🏆 **State-of-the-art** among multi-platform GUI models on OSWorld-Verified, AndroidWorld, Mobile-World, WindowsAA, ScreenSpot-v2, ScreenSpot-Pro, and more.
|
| 20 |
+
- 🔧 **Tool & MCP calling**: Native support for external tool invocation and MCP server coordination, achieving top performance on OSWorld-MCP and Mobile-World.
|
| 21 |
+
- 🧠 **Long-horizon memory**: Built-in memory capability without external workflow orchestration, leading all native agent models on MemGUI-Bench.
|
| 22 |
+
- 🤝 **Multi-agent ready**: Serves both as a standalone end-to-end agent and as specialized roles (planner, executor, verifier, notetaker) within the Mobile-Agent-v3.5 framework.
|
| 23 |
+
- ⚡ **Instruct & Thinking variants**: Smaller instruct models for fast inference and edge deployment; larger thinking models for complex tasks requiring planning and reflection.
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
## Performance
|
| 27 |
+
### End-to-End Online Benchmarks
|
| 28 |
+
|
| 29 |
+
| Model | OSWorld-Verified | AndroidWorld | OSWorld-MCP | Mobile-World | WindowsAA |
|
| 30 |
+
|-------|:---:|:---:|:---:|:---:|:---:|
|
| 31 |
+
| GUI-Owl-1.5-2B-Instruct | 43.5 | 67.9 | 33.0 | 31.3 | 25.8 |
|
| 32 |
+
| GUI-Owl-1.5-4B-Instruct | 48.2 | 69.8 | 31.7 | 32.3 | 29.4 |
|
| 33 |
+
| GUI-Owl-1.5-8B-Instruct | 52.3 | 69.0 | 41.8 | 41.8 | 31.7 |
|
| 34 |
+
| GUI-Owl-1.5-8B-Thinking | 52.9 | **71.6** | 38.8 | 33.3 | 35.1 |
|
| 35 |
+
| GUI-Owl-1.5-32B-Instruct | **56.5** | 69.4 | **47.6** | **46.8** | **44.8** |
|
| 36 |
+
| GUI-Owl-1.5-32B-Thinking | 56.0 | 68.2 | 43.8 | 42.8 | 44.1 |
|
| 37 |
+
|
| 38 |
+
### Grounding Benchmarks
|
| 39 |
+
|
| 40 |
+
Please refer to the technical report for detailed results on ScreenSpot-v2, ScreenSpot-Pro, OSWorld-G, MMBench-GUI, and more.
|
| 41 |
+
|
| 42 |
+
## Usage
|
| 43 |
+
|
| 44 |
+
Please refer to our cookbook.
|
| 45 |
+
|
| 46 |
+
## Deploy
|
| 47 |
+
|
| 48 |
+
We recommand deploy GUI-Owl-1.5 through vllm
|
| 49 |
+
|
| 50 |
+
This script has been validated on an A100 with 96 GB of VRAM.
|
| 51 |
+
```bash
|
| 52 |
+
PIXEL_ARGS='{"size": {"longest_edge": 3072000, "shortest_edge": 65536}}'
|
| 53 |
+
IMAGE_LIMIT_ARGS='image=5'
|
| 54 |
+
MP_SIZE=1
|
| 55 |
+
|
| 56 |
+
vllm serve $CKPT \
|
| 57 |
+
--max-model-len 32768 \
|
| 58 |
+
--mm-processor-kwargs "$PIXEL_ARGS" \
|
| 59 |
+
--limit-mm-per-prompt "$IMAGE_LIMIT_ARGS" \
|
| 60 |
+
--tensor-parallel-size $MP_SIZE \
|
| 61 |
+
--allowed-local-media-path '/' \
|
| 62 |
+
--port 4243 \
|
| 63 |
+
```
|
| 64 |
|
| 65 |
## Citation
|
| 66 |
|