sjtuzc commited on
Commit
75685fe
·
verified ·
1 Parent(s): 8da5a94

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -3
README.md CHANGED
@@ -1,3 +1,55 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ pipeline_tag: image-text-to-text
5
+ tags:
6
+ - multimodal
7
+ - gui
8
+ base_model:
9
+ - Qwen/Qwen3-VL-4B-Instruct
10
+ ---
11
+ # MobiMind-Mixed-4B-1031 Model
12
+
13
+ This is the Mixed Model of [MobiAgent](https://github.com/IPADS-SAI/MobiAgent) which is trained on the basis of [Qwen3-VL-4B-Instruct](https://huggingface.co/Qwen/Qwen3-VL-4B-Instruct), having the abilities of both the [MobiMind-Decider](https://huggingface.co/IPADS-SAI/MobiMind-Decider-7B/) and the [MobiMind-Grounder](https://huggingface.co/IPADS-SAI/MobiMind-Grounder-3B/) presented in the paper [MobiAgent: A Systematic Framework for Customizable Mobile Agents](https://huggingface.co/papers/2509.00531).
14
+
15
+ ## Paper Abstract
16
+
17
+ With the rapid advancement of Vision-Language Models (VLMs), GUI-based mobile agents have emerged as a key development direction for intelligent mobile systems. However, existing agent models continue to face significant challenges in real-world task execution, particularly in terms of accuracy and efficiency. To address these limitations, we propose MobiAgent, a comprehensive mobile agent system comprising three core components: the MobiMind-series agent models, the AgentRR acceleration framework, and the MobiFlow benchmarking suite. Furthermore, recognizing that the capabilities of current mobile agents are still limited by the availability of high-quality data, we have developed an AI-assisted agile data collection pipeline that significantly reduces the cost of manual annotation. Compared to both general-purpose LLMs and specialized GUI agent models, MobiAgent achieves state-of-the-art performance in real-world mobile scenarios.
18
+
19
+ ## About MobiAgent
20
+
21
+ **MobiAgent** is a powerful mobile agent system including:
22
+
23
+ * **An agent model family**: MobiMind
24
+ * **An agent acceleration framework**: AgentRR
25
+ * **An agent benchmark**: MobiFlow
26
+
27
+ **System Architecture:**
28
+
29
+ <div align="center">
30
+ <p align="center">
31
+ <img src="https://raw.githubusercontent.com/IPADS-SAI/MobiAgent/main/assets/arch.png" width="100%"/>
32
+ </p>
33
+ </div>
34
+
35
+ ## Evaluation Results
36
+
37
+ <table>
38
+ <tr>
39
+ <td><img src="https://raw.githubusercontent.com/IPADS-SAI/MobiAgent/main/assets/result1.png" width="100%"/></td>
40
+ <td><img src="https://raw.githubusercontent.com/IPADS-SAI/MobiAgent/main/assets/result2.png" width="100%"/></td>
41
+ <td><img src="https://raw.githubusercontent.com/IPADS-SAI/MobiAgent/main/assets/result3.png" width="100%"/></td>
42
+ </tr>
43
+ </table>
44
+ ## Usage
45
+
46
+ Deploy model inference service with vLLM:
47
+
48
+ ```bash
49
+ # Requirements: vllm >= 0.11.0
50
+ vllm serve IPADS-SAI/MobiMind-Mixed-4B-1031
51
+ ```
52
+
53
+ It simultaneously serves as the Decider and the Grounder, i.e., the requests for **both tasks** can be routed to this model.
54
+
55
+ For more usage details, e.g., execute GUI tasks with ADB or our Android App, please refer to our [repo](https://github.com/IPADS-SAI/MobiAgent)!