Add model card for GUI-AIMA-3B

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ pipeline_tag: image-text-to-text
4
+ base_model: Qwen/Qwen2.5-VL-3B-Instruct
5
+ ---
6
+
7
+ # GUI-AIMA-3B
8
+
9
+ GUI-AIMA (Aligning Intrinsic Multimodal Attention) is an attention-based and coordinate-free supervised fine-tuning framework for efficient GUI grounding, as introduced in the paper [GUI-AIMA: Aligning Intrinsic Multimodal Attention with a Context Anchor for GUI Grounding](https://huggingface.co/papers/2511.00810).
10
+
11
+ The model aligns the intrinsic multimodal attention of Multimodal Large Language Models (MLLMs) with patch-wise grounding signals. This approach is highly data-efficient and allows for the integration of a plug-and-play zoom-in stage for high-resolution grounding without additional fine-tuning.
12
+
13
+ ## Model Details
14
+
15
+ - **Architecture:** Based on Qwen2.5-VL-3B-Instruct with a context anchor mechanism for attention-based grounding.
16
+ - **Task:** GUI Grounding (mapping instructions to actionable screen regions).
17
+ - **Paper:** [GUI-AIMA: Aligning Intrinsic Multimodal Attention with a Context Anchor for GUI Grounding](https://huggingface.co/papers/2511.00810)
18
+ - **GitHub Repository:** [https://github.com/sjz5202/GUI-AIMA](https://github.com/sjz5202/GUI-AIMA)
19
+
20
+ ## Performance
21
+
22
+ GUI-AIMA-3B achieves state-of-the-art performance among 3B-parameter models on several GUI grounding benchmarks:
23
+
24
+ | Benchmark | Accuracy (1-step) | Accuracy (2-step Zoom-in) |
25
+ |---|---|---|
26
+ | ScreenSpot-Pro | 53.8% | 61.5% |
27
+ | OSWorld-G | 62.8% | 68.1% |
28
+ | ScreenSpot-v2 | 92.1% | - |
29
+ | MMBench-GUI-L2 | 79.1% | - |
30
+ | UI-Vision | 60.0% | - |
31
+
32
+ ## Usage
33
+
34
+ The model requires custom code from the official repository for inference. Please refer to the [GitHub repository](https://github.com/sjz5202/GUI-AIMA) for installation instructions and example scripts (e.g., `eval/example_inference.py`).
35
+
36
+ ## Citation
37
+
38
+ ```bibtex
39
+ @misc{zhou2025guiaimaaligningintrinsicmultimodal,
40
+ title={GUI-AIMA: Aligning Intrinsic Multimodal Attention with a Context Anchor for GUI Grounding},
41
+ author={Shijie Zhou and Viet Dac Lai and Hao Tan and Jihyung Kil and Wanrong Zhu and Changyou Chen and Ruiyi Zhang},
42
+ year={2025},
43
+ eprint={2511.00810},
44
+ archivePrefix={arXiv},
45
+ primaryClass={cs.CV},
46
+ url={https://arxiv.org/abs/2511.00810},
47
+ }
48
+ ```