Improve model card: add metadata and links to research
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,11 +1,21 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |

|
| 6 |
|
| 7 |
## 📖 Background
|
| 8 |
-
The development of GUI agents could revolutionize the next generation of human-computer interaction. Motivated by this vision, we present MAI-UI, a family of foundation GUI agents
|
| 9 |
|
| 10 |
## 🏆 Results
|
| 11 |
|
|
@@ -31,3 +41,23 @@ MAI-UI establishes new state-of-the-art across GUI grounding and mobile navigati
|
|
| 31 |
### Device-Cloud Collaboration
|
| 32 |
- Our device-cloud collaboration framework can dynamically select on-device or cloud execution based on task execution state and data sensitivity. It improves on-device performance by 33% and reduces cloud API calls by over 40%.
|
| 33 |

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-text-to-text
|
| 4 |
+
library_name: transformers
|
| 5 |
---
|
| 6 |
+
|
| 7 |
+
# MAI-UI: Real-World Centric Foundation GUI Agents
|
| 8 |
+
|
| 9 |
+
MAI-UI is a family of foundation GUI agents spanning the full spectrum of sizes, including 2B, 8B, 32B, and 235B-A22B variants. This model is part of the work described in the paper [MAI-UI Technical Report: Real-World Centric Foundation GUI Agents](https://arxiv.org/abs/2512.22047).
|
| 10 |
+
|
| 11 |
+
- **Code:** [https://github.com/Tongyi-MAI/MAI-UI](https://github.com/Tongyi-MAI/MAI-UI)
|
| 12 |
+
- **Project Page:** [https://tongyi-mai.github.io/MAI-UI/](https://tongyi-mai.github.io/MAI-UI/)
|
| 13 |
+
- **Paper:** [https://arxiv.org/abs/2512.22047](https://arxiv.org/abs/2512.22047)
|
| 14 |
+
|
| 15 |

|
| 16 |
|
| 17 |
## 📖 Background
|
| 18 |
+
The development of GUI agents could revolutionize the next generation of human-computer interaction. Motivated by this vision, we present MAI-UI, a family of foundation GUI agents. We identify four key challenges to realistic deployment: the lack of native agent–user interaction, the limits of UI-only operation, the absence of a practical deployment architecture, and brittleness in dynamic environments. MAI-UI addresses these issues with a unified methodology: a self-evolving data pipeline that expands the navigation data to include user interaction and MCP tool calls, a native device–cloud collaboration system that routes execution by task state, and an online RL framework with advanced optimizations to scale parallel environments and context length.
|
| 19 |
|
| 20 |
## 🏆 Results
|
| 21 |
|
|
|
|
| 41 |
### Device-Cloud Collaboration
|
| 42 |
- Our device-cloud collaboration framework can dynamically select on-device or cloud execution based on task execution state and data sensitivity. It improves on-device performance by 33% and reduces cloud API calls by over 40%.
|
| 43 |

|
| 44 |
+
|
| 45 |
+
## 🚀 Quick Start
|
| 46 |
+
|
| 47 |
+
For detailed installation and usage instructions, please refer to the [official GitHub repository](https://github.com/Tongyi-MAI/MAI-UI). The models can be served via [vLLM](https://github.com/vllm-project/vllm).
|
| 48 |
+
|
| 49 |
+
## 📝 Citation
|
| 50 |
+
|
| 51 |
+
If you find this project useful for your research, please consider citing our work:
|
| 52 |
+
|
| 53 |
+
```bibtex
|
| 54 |
+
@misc{zhou2025maiuitechnicalreportrealworld,
|
| 55 |
+
title={MAI-UI Technical Report: Real-World Centric Foundation GUI Agents},
|
| 56 |
+
author={Hanzhang Zhou and Xu Zhang and Panrong Tong and Jianan Zhang and Liangyu Chen and Quyu Kong and Chenglin Cai and Chen Liu and Yue Wang and Jingren Zhou and Steven Hoi},
|
| 57 |
+
year={2025},
|
| 58 |
+
eprint={2512.22047},
|
| 59 |
+
archivePrefix={arXiv},
|
| 60 |
+
primaryClass={cs.CV},
|
| 61 |
+
url={https://arxiv.org/abs/2512.22047},
|
| 62 |
+
}
|
| 63 |
+
```
|