HongxinLi commited on
Commit
76ea147
·
verified ·
1 Parent(s): e6ffab9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -5
README.md CHANGED
@@ -1,8 +1,112 @@
1
  ---
2
- license: mit
 
 
3
  language:
4
  - en
5
- base_model:
6
- - Qwen/Qwen2-VL-7B-Instruct
7
- library_name: transformers
8
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: Qwen/Qwen2-VL-7B-Instruct
3
+ library_name: transformers
4
+ license: apache-2.0
5
  language:
6
  - en
7
+ pipeline_tag: image-text-to-text
8
+ ---
9
+
10
+ # UIPro: Unleashing Superior Interaction Capability For GUI Agents
11
+
12
+ <div align="center">
13
+
14
+ [\[💻Code\]](https://github.com/ZJULiHongxin/UIPro) [\[🚀Quick Start\]](#uses) [\[📝Paper\]](https://arxiv.org/abs/2509.17328)
15
+
16
+ </div>
17
+
18
+
19
+ ![uipro_github_banner](https://cdn-uploads.huggingface.co/production/uploads/648e5a70df53671f33e94d52/VmLuH_usPK5hZOPPnYFhS.png)
20
+
21
+
22
+ ## Model Details
23
+
24
+
25
+ ![uipro_mainfigure](https://cdn-uploads.huggingface.co/production/uploads/648e5a70df53671f33e94d52/Kd5yOvqpFzoRlqEEL4KAS.png)
26
+
27
+ ### Model Description
28
+
29
+ <!-- Provide a longer summary of what this model is. -->
30
+
31
+
32
+
33
+ - **Developed by:** Brave Group, CASIA
34
+ - **Model type:** Vision-Language Model
35
+ - **Language(s) (NLP):** English
36
+ - **License:** Apache License 2.0
37
+ - **Finetuned from model [optional]:** Qwen2-VL-7B-Instruct
38
+
39
+ ### Model Sources [optional]
40
+
41
+ HongxinLi/UIPro-7B_Stage2_Web is a GUI agentic model finetuned from Qwen2-VL-7B-Instruct. This model is the web-oriented embodiment of UIPro and capable of solving GUI agent tasks on web scenarios.
42
+ <!-- Provide the basic links for the model. -->
43
+
44
+ - **Repository:** [https://github.com/ZJULiHongxin/UIPro](https://github.com/ZJULiHongxin/UIPro)
45
+ - **Paper [optional]:** [https://arxiv.org/abs/2509.17328](https://arxiv.org/abs/2509.17328)
46
+
47
+ ## Uses
48
+
49
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
50
+
51
+ ### Direct Use
52
+
53
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
54
+
55
+ First, ensure that the necessary dependencies are installed:
56
+ ```
57
+ pip install transformers
58
+ pip install qwen-vl-utils
59
+ ```
60
+
61
+ Inference code example:
62
+ ```
63
+ from transformers import Qwen2VLForConditionalGeneration, AutoProcessor
64
+ from qwen_vl_utils import process_vision_info
65
+
66
+ # Default: Load the model on the available device(s)
67
+ model = Qwen2VLForConditionalGeneration.from_pretrained(
68
+ "HongxinLi/UIPro-7B_Stage2_Mobile", torch_dtype="auto", device_map="auto"
69
+ )
70
+ processor = AutoProcessor.from_pretrained("HongxinLi/UIPro-7B_Stage2_Mobile")
71
+
72
+ messages = [
73
+ {
74
+ "role": "user",
75
+ "content": [
76
+ {
77
+ "type": "image",
78
+ "image": "./web_6f93090a-81f6-489e-bb35-1a2838b18c01.png",
79
+ },
80
+
81
+ # For ScreenSpot-v2, MOTIF, RefExp, and VisualWebBench Action Grounding
82
+ {"type": "text", "text": """Given the Web UI screenshot and previous actions, please generate the next move necessary to advance towards task completion. The user's task is: {task}
83
+ Action history: {action_history}
84
+
85
+ Now, first describe the action intent and then directly plan the next action."""},
86
+ ],
87
+ }
88
+ ]
89
+
90
+ ```
91
+
92
+
93
+
94
+ ## Citation
95
+
96
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
97
+
98
+ **BibTeX:**
99
+ ```
100
+ @InProceedings{Li_2025_ICCV,
101
+ author = {Li, Hongxin and Su, Jingran and Chen, Jingfan and Ju, Zheng and Chen, Yuntao and Li, Qing and Zhang, Zhaoxiang},
102
+ title = {UIPro: Unleashing Superior Interaction Capability For GUI Agents},
103
+ booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
104
+ month = {October},
105
+ year = {2025},
106
+ pages = {1613-1623}
107
+ }
108
+ ```
109
+
110
+ ### Framework versions
111
+
112
+ - PEFT 0.11.1