HyperAIHyperAI

Command Palette

Search for a command to run...

한 달 전
다중모달

올바른 교사를 신뢰하라: GUI 그라운딩을 위한 품질 인식 자기 증류

Jingyuan Huang Zuming Huang Yucheng Shi Tianze Yang Xiaoming Zhai Wei Chu Ninghao Liu

초록

그래픽 사용자 인터페이스(GUI) 그라운딩은 고해상도 스크린샷에서 작은 대상 요소를 식별하고 정확한 화면 좌표를 예측하기 위해 비전-언어 모델(VLMs)을 필요로 한다. 온-폴리시 자기 증류(OPSD)는 이 좌표 민감형 작업에 유망한 사후 학습 접근법으로, 경성 좌표 레이블을 넘어 밀집된 token 수준 교사 신호를 제공하기 때문이다. 그러나 단순 OPSD는 GUI 그라운딩에 적합하지 않다. OPSD는 학생이 생성한 prefix를 기준으로 교사를 평가하므로, prefix가 이미 대상 좌표에서 벗어났을 경우 coordinate-token 교사 신호의 품질이 저하되어 신뢰할 수 없는 교사 신호를 초래한다. 이를 완화하기 위해 본 연구는 VLM 기반 GUI 그라운딩을 위한 quality-aware 자기 증류 기법을 제안한다. 이 기법은 soft correctness-aware gating과 teacher-probability scaling을 통해 coordinate-token 교사 신호의 품질을 향상시킨다. soft correctness-aware gate는 학생이 생성한 prefix 조건 하에서 교사의 현재 coordinate-token 예측이 여전히 ground-truth box로 완성될 수 있는지 확인한다. 그렇지 않을 경우 해당 교사 신호의 가중치는 감소된다. 이어 teacher-probability scaling은 게이트된 감독 신호의 강도를 추가로 보정하기 위해 교사의 confidence를 경량 인자로 활용한다. 주요 실험적 발견은 각 구성 요소가 단독으로 전체 성능을 향상시키지 못하는 반면, 두 구성 요소를 결합하면 성능이 일관되게 향상된다는 것이다. 이는 두 메커니즘이 상호 보완적인 역할을 수행함을 시사한다: correctness-aware gating은 신뢰할 수 없는 coordinate-token 감독 신호를 억제하는 반면, teacher-probability scaling은 나머지 신호의 강도를 보정한다. 여섯 가지 GUI 그라운딩 벤치마크에 대한 실험 결과는 본 방법이 베이스 모델을 일관되게 향상시키며 강력한 베이스라인들을 능가함을 보여준다.

One-sentence Summary

The authors propose a quality-aware self-distillation method for vision-language model-based GUI grounding that replaces naive on-policy self-distillation with soft correctness-aware gating and teacher-probability scaling to dynamically down-weight unreliable coordinate-token teacher signals, thereby improving precise element localization in high-resolution screenshots.

Key Contributions

  • This work introduces a quality-aware self-distillation framework for vision-language models in graphical user interface (GUI) grounding to stabilize coordinate-sensitive training when on-policy prefixes diverge from target regions.
  • A soft correctness-aware gating mechanism evaluates spatial verifiability by checking whether teacher coordinate predictions can still complete into the ground-truth bounding box under student-generated prefixes, automatically down-weighting unreliable signals.
  • Teacher-probability scaling operates as a lightweight calibration factor that dynamically adjusts gated supervision strength, establishing a direct training-time reliability criterion that leverages spatial verification instead of relying on indirect proxies such as entropy or perplexity.

Dataset

  • Dataset composition and sources: The authors construct a dual-prompt dataset for GUI instruction tasks, pairing original user queries with corresponding interface screenshots.
  • Subset details: Student prompts contain the raw GUI image alongside the original instruction or query. Teacher prompts mirror this structure but append a privileged hint to direct model attention.
  • Data usage and processing: The paper uses these templates to structure model inputs. The authors deploy student prompts for baseline task execution and teacher prompts to deliver guided assistance during training or inference.
  • Cropping and metadata strategy: The teacher hints explicitly note that the correct answer is located within a green rectangle. This indicates a region-based processing approach where the authors isolate or crop the relevant interface area using spatial metadata before feeding it to the model.

Experiment

Evaluated across six GUI grounding benchmarks using a Qwen3.5-9B backbone, the experimental pipeline validates a quality-aware self-distillation framework by systematically testing its core calibration mechanisms against established training paradigms. Main comparative trials demonstrate that the proposed method consistently surpasses supervised fine-tuning, reinforcement learning, and prior self-distillation approaches, while component analyses confirm that soft correctness-aware gating and teacher-probability scaling function as complementary filters that suppress inconsistent supervision and preserve valuable corrective feedback. Further sensitivity analyses reveal that carefully balancing coarse reliability gating with fine-grained probability weighting and coordinate-token strength optimizes cross-benchmark generalization. Ultimately, the results establish spatial verifiability and dynamic signal calibration as robust strategies for mitigating exposure bias and enhancing autoregressive coordinate prediction.

The proposed method, integrating soft correctness-aware gating and teacher-probability scaling, achieves the best macro-average accuracy across all evaluated GUI grounding benchmarks. While applying either component individually fails to provide consistent improvements over the baseline, their combination effectively calibrates teacher signals to enhance overall performance. The combined method achieves the highest average accuracy across all benchmarks. Individual components (gating or scaling alone) do not improve performance over the baseline. The proposed method outperforms the baseline on every single benchmark listed.

The authors evaluate their proposed quality-aware self-distillation method against several baselines, including GUI-SD and SFT, across six GUI grounding benchmarks. The results indicate that their method consistently achieves the highest performance on all individual datasets and the overall average macro-accuracy. This demonstrates that calibrating teacher signal reliability through soft gating and probability scaling effectively improves upon existing training strategies. The proposed method achieves the best performance across all six evaluated benchmarks, surpassing the strongest baseline, GUI-SD. The approach outperforms standard supervised fine-tuning and reinforcement learning baselines, highlighting the benefits of dense token-level supervision. Combining soft correctness-aware gating with teacher-probability scaling yields superior results compared to using either component in isolation.

The authors investigate the effect of gating strength on teacher-signal calibration for GUI grounding. The soft correctness-aware gating method achieves the highest macro-average accuracy, outperforming both the scaling-only baseline and the hard gating variant. This suggests that soft gating provides a more effective compromise by down-weighting unreliable signals rather than discarding them completely. Soft correctness-aware gating achieves the best overall performance compared to hard gating and scaling-only baselines. The method consistently outperforms the teacher-probability scaling approach across the evaluated benchmarks. Soft gating proves more effective than hard gating by preserving corrective information while filtering unreliable signals.

The authors investigate the impact of the scaling coefficient on model performance across multiple benchmarks. The results indicate that increasing the coefficient initially boosts the macro-average accuracy, with the proposed setting achieving the highest overall score. However, further increasing the coefficient leads to a decrease in the average performance, suggesting that an overly strong coefficient can harm general grounding capabilities. The proposed configuration achieves the highest macro-average accuracy compared to other tested coefficient values. While a higher coefficient improves performance on specific datasets, it reduces the overall average score across all benchmarks. The selected coefficient value offers the best trade-off, balancing effective supervision with robust general performance.

The authors investigate the effect of teacher-probability scaling within their self-distillation framework, which already employs soft correctness-aware gating and a fixed scaling coefficient. Experimental results show that introducing probability scaling yields consistent improvements across all six GUI grounding benchmarks relative to the fixed scaling configuration. The proposed method with probability scaling outperforms the fixed scaling baseline on every individual benchmark. It achieves the best macro-average accuracy, indicating strong overall performance. Teacher-probability scaling allows for finer calibration of teacher signals, enhancing the quality of supervision.

Evaluated across six GUI grounding benchmarks against standard supervised fine-tuning and reinforcement learning baselines, the proposed quality-aware self-distillation method consistently achieves superior performance when soft correctness-aware gating and teacher-probability scaling are combined. Individual ablation studies reveal that neither component alone improves upon the baseline, while soft gating outperforms hard alternatives by down-weighting unreliable signals rather than discarding them. Further tuning demonstrates that the selected scaling coefficient optimally balances supervision intensity with generalization, and dynamic probability scaling consistently outperforms fixed configurations. Collectively, these results confirm that carefully calibrating teacher signal reliability significantly enhances dense token-level supervision for robust GUI grounding.


AI로 AI 구축

아이디어에서 출시까지 — 무료 AI 코코딩, 즉시 사용 가능한 환경, 최적의 GPU 가격으로 AI 개발을 가속화하세요.

AI 협업 코딩
바로 사용 가능한 GPU
최적의 가격

HyperAI Newsletters

최신 정보 구독하기
한국 시간 매주 월요일 오전 9시 에 이번 주의 최신 업데이트를 메일로 발송합니다
이메일 서비스 제공: MailChimp
올바른 교사를 신뢰하라: GUI 그라운딩을 위한 품질 인식 자기 증류 | 문서 | HyperAI초신경