REVIEW 4 major objections 6 minor 3 cited by
ReGUIDE: Data Efficient GUI Grounding via Spatial Reasoning and Search
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that GUI grounding can reach state-of-the-art accuracy using only 20K training images by combining self-generated reasoning, spatial-consistency fine-tuning, and KDE-based spatial search.
desk verdict Solid method paper, but the headline '500x less data' claim conflates training data with test-time search compute and does not survive a controlled comparison. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is a three-part loop: (1) self-generated reasoning through online RL, where GRPO samples multiple (reasoning, coordinate) outputs per image and rewards any point inside the target box, so the model learns to articulate spatial cues without any language annotation; (2) spatial-consistency fine-tuning, which takes a correct global-view sample and trains the same reasoning tokens to predict the transformed center on a random crop, enforcing equivariance under cropping; and (3) test-time spatial search, in which kernel density estimation, a smooth voting rule that sums 2D Gaussian bumps around sampled points, locates the mode of the model's coordinate distribution, crops the image there, and then aggregates a second round of samples into a final coordinate. The KDE step is what turns many noisy token-level guesses into one robust point, and it is the component that produces the larger jump on high-resolution screenshots.
What would settle it
Replicate the two-stage training but replace the reasoning text in the local-view samples with a mismatched or empty string while keeping the coordinates correct; if the consistency stage still yields the reported 84.9% on ScreenSpot (versus 83.3% for RL-only), the shared-reasoning assumption is not what carries the gain. A complementary check is the paper's own comparison: mixing the same crops into the RL stage gives 83.2%, so a replication that finds no gap between RL-with-augmentation and RL-plus-consistency-finetuning would falsify the claim that the consistency stage adds real signal.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that GUI coordinate grounding can be made data-efficient by turning the model into a self-explainer and then a self-critic. Instead of supervising the model with human-written explanations, ReGUIDE first runs GRPO-style reinforcement learning where the reward is simply whether the sampled point lies inside the ground-truth bounding box, plus a small formatting reward for enclosing the reasoning in <think> tags. This makes the model generate diverse reasoning traces and keep the ones that lead to correct points. In a second stage, each correct global-view sample is reused as supervision for a randomly cropped local view that shares the same instruction and reasoning text but has transformed coordinates; the model is trained to predict the center of the target in both views, enforcing spatial consistency. At inference, ReGUIDE samples several coordinates, fits a 2D kernel density estimate, crops the image around the density peak, samples again inside that crop, and returns the highest-density point. The paper reports that this pipeline turns a 20K-sample fine-tune of Qwen-2.5-VL into a grounding model that outperforms UGround-7B, which was trained on 10M samples, on ScreenSpot and ScreenSpot-Pro, and that the same grounding improvements transfer to agentic task success rates on Mind2Web and AndroidControl.
Load-bearing premise
The load-bearing premise is that the reasoning text the model generates for the full screenshot remains valid supervision when the model is shown only a random crop centered on the target, even though the crop changes the coordinate frame and hides the surrounding layout the reasoning refers to.
Editorial extensions
If this is right
- If the central claim holds, a 20K-image subset of UGround is sufficient to match or beat models trained on 10M images, so the bottleneck shifts from data collection to the training recipe.
- The consistency stage means a model can be aligned across views using only spatial priors, with no extra human labels, which should extend to other localization tasks where target coordinates transform predictably under cropping.
- Test-time search behaves like a scaling law: the paper's ablation shows accuracy rises monotonically with the number of sampled predictions N, so more inference compute can be traded for accuracy without retraining.
- Because grounding accuracy directly improves agent task success on Mind2Web and AndroidControl under a fixed planner, stronger grounding is a practical lever for GUI agents, not just a benchmark metric.
Reading between the lines
- A testable extension is to use the KDE density peak's width as a confidence estimate: if the model's coordinate distribution is roughly Gaussian around the target, the spread of samples should predict whether the final point is correct, enabling abstention or verification.
- The shared-reasoning design implicitly assumes the reasoning trace is view-invariant; a stronger version of the method might explicitly rewrite the reasoning for the cropped view, which could help when the global rationale refers to page layout that the crop no longer shows.
- The paper's own data-scaling curve from 3.2K to 20K has not saturated, which suggests the same recipe would keep improving with a moderately larger dataset; extrapolating that trend is an editorial inference, not yet demonstrated.
- An editorial note on deployment: the paper itself flags the lack of an explicit safety framework against malicious automation; that is a deployment limitation and does not bear on the accuracy claim, but it should shape how the capability is released.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ReGUIDE, a framework for GUI coordinate grounding that combines (i) online RL (GRPO) with an accuracy-plus-formatting reward to make an MLLM self-generate reasoning traces, (ii) a consistency fine-tuning stage that supervises predictions on paired global and cropped views while sharing the same reasoning text, and (iii) a test-time spatial search that crops around a KDE density peak and aggregates repeated samples. Training on a 20K subset of UGround (claimed 0.2% of the data used by open-sourced baselines), ReGUIDE reports improving Qwen-2.5-VL-3B from 55.5% to 87.3% on ScreenSpot and from 23.9% to 44.3% on ScreenSpot-Pro, and similarly large gains for the 7B variant. The paper also reports downstream agentic gains on Multimodal-Mind2Web and AndroidControl, component ablations, and hyperparameter studies for the search stage.
Significance. If the data-efficiency claim holds, ReGUIDE would be a valuable demonstration that reasoning RL, spatial consistency, and test-time search can substitute for millions of supervised GUI examples. The paper has real strengths: the ablations in Tables 4, 5, 10, and 11 isolate each component; Figure 2 provides an interesting empirical observation that coordinate-token likelihoods are approximately Gaussian, which supports the KDE aggregation choice; Table 6 shows grounding gains can transfer to downstream agent tasks; and the training details in Appendix A are sufficiently concrete for reproduction. The main reservation is that the headline comparison is not controlled for inference-time compute, and several secondary issues (baseline prompt mismatch, a numerical inconsistency, and an unexamined assumption in the consistency loss) currently prevent the central claim from being accepted as stated.
major comments (4)
- [Section 4, Table 1 and Table 5] The headline data-efficiency comparison is not controlled for inference-time compute. ReGUIDE is evaluated with N=M=16 sampled predictions, an 840x840 RoI crop, and KDE aggregation, while all baselines are evaluated with greedy decoding and no search. Table 5 shows that, for the already-trained ReGUIDE-3B, adding the cropping-plus-voting search raises ScreenSpot from 84.3 to 87.3 and ScreenSpot-Pro from 27.9 to 44.3. Thus a large portion of the margin over UGround-7B (86.3/31.1) comes from test-time search rather than from the 20K training set. The statement that ReGUIDE uses 'only 0.2% samples' should either be accompanied by baselines re-evaluated with the same search procedure, or be explicitly reframed as a system-level train-plus-test-compute claim.
- [Section 4, 'Baselines' and Appendix F] The '+SFT 20K' baseline is not directly comparable to ReGUIDE. According to the baseline description and the prompts in Appendix F, SFT uses the UGround prompt with a coordinate-only output, while ReGUIDE uses a different prompt that asks for <think> reasoning and an <answer> coordinate. The fact that SFT drops below the base model on ScreenSpot-V2 and ScreenSpot-Pro (for Qwen-2.5-VL-3B: 70.4 to 56.5 and 23.9 to 11.6) suggests prompt, decoding, or loss differences are confounding the comparison. The controlled comparison should use the same prompt format for SFT and ReGUIDE, and ideally also evaluate both with greedy decoding and with the same search procedure.
- [Section 4.1, Table 1] The prose states 'ReGUIDE performs accuracy of 45.1%' on ScreenSpot-Pro, but Table 1 reports 44.3 for ReGUIDE-3B and 44.4 for ReGUIDE-7B. This inconsistency should be corrected; if 45.1 comes from a different configuration (for example, a different search setting or a typo), that configuration should be stated explicitly.
- [Section 3.1, Eq. (3)] The consistency stage assumes that a self-generated reasoning trace r is a valid supervision target for both the global view and the randomly cropped local view. Because cropping changes the coordinate frame and can remove the very landmarks the reasoning refers to (e.g., 'first row, first column' of a section, as shown in Table 3), the local-view loss may train the model to reproduce reasoning that is spatially inconsistent with the cropped image. This assumption is load-bearing for the loss in Eq. (3), and the paper currently provides only the indirect evidence in Table 11. The authors should provide a direct check—for instance, measuring the local-view loss or success rate when conditioning on the global-view reasoning r, or ablating against re-generating a local-view-specific reasoning trace—to show that the shared reasoning is not teaching contradictory input-output mappings.
minor comments (6)
- [Section 4, Evaluation setup] The evaluation protocol should state explicitly that all baselines are decoded greedily and without search; currently only the ReGUIDE search hyperparameters are reported, so the reader must infer the baseline decoding protocol.
- [Section 3.2, Eq. (5)] The notation is inconsistent: the text says M new coordinates are generated inside the RoI, but Eq. (5) defines CRoI := {c(i)_RoI}_{i=1}^N. Since the paper uses N=M=16, this is not currently an error in results, but the formalism should be aligned.
- [Section 4.2, Table 5 vs Table 4] Table 5 reports 84.3 for ReGUIDE-3B without cropping or voting, while Table 4 reports 84.9 for the same configuration (Reason + Consistency, no Search). The discrepancy should be explained or corrected.
- [Section A.3, Table 8] Table 8 lists 'minimum crop ratio 0.3' while the main text says the local view is a random crop of up to 30% of the original area; please clarify whether 0.3 is a minimum, a maximum, or a range, and state the exact sampling procedure.
- [Section 4.2, Figure 2] The typo 'spreaded gaussian' should be fixed, and the figure caption should explain how the likelihood surface is computed from model token probabilities, since this claim is used to justify the KDE kernel choice.
- [Section 4, Eq. (4)] The argmax in Eq. (4) is over a continuous rectangle; the paper should specify how the density is numerically evaluated (e.g., grid resolution, tie-breaking), since this affects the reproducibility of the reported accuracy numbers.
Circularity Check
No significant circularity: the training rewards use external ground truth, the consistency loss uses augmented labels, and the test-time search is an inference-time ensemble over genuine model outputs.
full rationale
ReGUIDE's derivation chain is self-contained and does not reduce to its own inputs. The RL stage (Eqs. 1-2) rewards predictions that fall inside the ground-truth box from UGround, so the reasoning objective is anchored by external labels. The consistency stage (Eq. 3) supervises the full image and a crop with the ground-truth-derived center of the target; the shared reasoning token sequence is a training choice, not a label manufactured from the model's final prediction. The test-time search (Eqs. 4-5) is a KDE-based voting procedure over the model's own sampled outputs and introduces no fitted parameter that is later renamed as a prediction. No load-bearing step depends on a self-citation: the only overlapping-author citation is [19] (Revise), which appears in a related-work sentence about test-time scaling and is not used to justify ReGUIDE's cropping/voting mechanism; that mechanism is instead related to the independently cited V* [34]. Component claims are supported by ablations (Tables 4, 5, 11) that vary one stage at a time with fixed model and benchmarks, so the reported gains are not forced by construction. The main validity concern is benchmarking rather than circularity: search hyperparameters (N=16, L=840, T=1.0) are selected on the same ScreenSpot/ScreenSpot-Pro benchmarks used in Table 1 while baselines are evaluated with greedy decoding, and a large part of the ScreenSpot-Pro gain is attributable to the search stage (27.9 to 44.3 in Table 5). This conflates train-time data efficiency with test-time compute and may inflate the reported margins, but it does not make the derivation equivalent to its inputs, and it should be assessed as a correctness/fairness risk rather than a circularity score.
Assumptions & free parameters
free parameters (7)
- Formatting reward weight lambda =
0.1
- KDE variance Sigma =
0.01
- RoI crop size (W_RoI, H_RoI) =
840 x 840
- Number of search samples N=M =
16
- Decoding temperature T =
1.0
- Minimum crop ratio =
0.3
- GRPO KL coefficient =
0.01
assumptions (5)
- domain assumption Any point inside the ground-truth bounding box is a correct grounding prediction, and the box center is the natural target.
- domain assumption The 20K image-instruction subset randomly drawn from UGround is representative enough to learn general GUI grounding.
- ad hoc to paper Self-generated reasoning traces from RL rollouts are high-quality enough to be reused as shared reasoning for both the global and cropped views.
- standard math KDE with a fixed Gaussian bandwidth is a valid way to aggregate coordinate predictions, assuming the predictions form a unimodal near-Gaussian density.
- domain assumption Point-in-box accuracy on ScreenSpot, ScreenSpot-V2, and ScreenSpot-Pro is a valid proxy for GUI-agent usefulness.
Cite this review
Pith. "Pith review of ReGUIDE: Data Efficient GUI Grounding via Spatial Reasoning and Search." pith.science (2026). https://pith.science/paper/PZWNAE57
@misc{pith2026250515259,
author = {Pith},
title = {Pith review of: ReGUIDE: Data Efficient GUI Grounding via Spatial Reasoning and Search},
year = {2026},
howpublished = {\url{https://pith.science/paper/PZWNAE57}},
note = {Machine review of arXiv:2505.15259}
}
read the original abstract
Recent advances in Multimodal Large Language Models (MLLMs) have enabled autonomous agents to interact with computers via Graphical User Interfaces (GUIs), where accurately localizing the coordinates of interface elements (e.g., buttons) is often required for fine-grained actions. However, this remains significantly challenging, leading prior works to rely on large-scale web datasets to improve the grounding accuracy. In this work, we propose Reasoning Graphical User Interface Grounding for Data Efficiency (ReGUIDE), a novel and effective framework for web grounding that enables MLLMs to learn data efficiently through self-generated reasoning and spatial-aware criticism. More specifically, ReGUIDE learns to (i) self-generate a language reasoning process for the localization via online reinforcement learning, and (ii) criticize the prediction using spatial priors that enforce equivariance under input transformations. At inference time, ReGUIDE further boosts performance through a test-time scaling strategy, which combines spatial search with coordinate aggregation. Our experiments demonstrate that ReGUIDE significantly advances web grounding performance across multiple benchmarks, outperforming baselines with substantially fewer training data points (e.g., only 0.2% samples compared to the best open-sourced baselines).
Figures
Figures from the paper (4 more)
Forward citations
Cited by 3 Pith papers
-
How Auxiliary Reasoning Unleashes GUI Grounding in VLMs
Overlaying labeled grids and axes on screenshots substantially improves zero-shot GUI grounding in most VLMs, with the best variant zooming into grid cells.
-
SWIRL: A Staged Workflow for Interleaved Reinforcement Learning in Mobile GUI Control
A multi-agent RL workflow that interleaves single-agent updates, applied to mobile GUI control, achieves SOTA zero-shot performance and a +14.8 MATH500 gain.
-
DiMo-GUI: Advancing Test-time Scaling in GUI Grounding via Modality-Aware Visual Reasoning
Separating text and icon grounding with iterative zooming improves GUI-element localization accuracy of existing vision-language models without retraining.
Reference graph
Works this paper leans on
-
[1]
A. Ahmadian, C. Cremer, M. Gallé, M. Fadaee, J. Kreutzer, O. Pietquin, A. Üstün, and S. Hooker. Back to basics: Revisiting reinforce style optimization for learning from human feedback in llms. arXiv preprint arXiv:2402.14740, 2024
arXiv 2024
-
[2]
Alibaba. Qwen2.5-vl technical report. arXiv preprint arXiv:abs/2502.13923, 2025
arXiv 2025
- [3]
- [4]
-
[5]
Caron, H
M. Caron, H. Touvron, I. Misra, H. Jégou, J. Mairal, P. Bojanowski, and A. Joulin. Emerging properties in self-supervised vision transformers. In Proceedings of the IEEE/CVF international conference on computer vision, pages 9650–9660, 2021
2021
-
[6]
C. Chen, Z. Zhang, I. Khalilov, B. Guo, S. A. Gebreegziabher, Y . Ye, Z. Xiao, Y . Yao, T. Li, and T. J.-J. Li. Toward a human-centered evaluation framework for trustworthy llm-powered gui agents. arXiv preprint arXiv:2504.17934, 2025
arXiv 2025
- [8]
-
[9]
Deepseekmath: Pushing the limits of mathematical reasoning in open language models
DeepSeek. Deepseekmath: Pushing the limits of mathematical reasoning in open language models. arXiv preprint arXiv:2402.03300, 2024
arXiv 2024
Show all 40 references
-
[10]
X. Deng, Y . Gu, B. Zheng, S. Chen, S. Stevens, B. Wang, H. Sun, and Y . Su. Mind2web: Towards a generalist agent for the web. In Thirty-seventh Conference on Neural Information Processing Systems, 2023. URL https://openreview.net/forum?id=kiYqbO3wqw
2023
-
[11]
B. Gou, R. Wang, B. Zheng, Y . Xie, C. Chang, Y . Shu, H. Sun, and Y . Su. Navigating the digital world as humans do: Universal visual grounding for gui agents. arXiv preprint arXiv:2410.05243, 2024
2024 arXiv
-
[12]
D. Guo, D. Yang, H. Zhang, J. Song, R. Zhang, R. Xu, Q. Zhu, S. Ma, P. Wang, X. Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948, 2025
2025 arXiv
-
[13]
R. D. Hjelm, A. Fedorov, S. Lavoie-Marchildon, K. Grewal, P. Bachman, A. Trischler, and Y . Bengio. Learning deep representations by mutual information estimation and maximization. arXiv preprint arXiv:1808.06670, 2018
2018 arXiv
-
[14]
W. Hong, W. Wang, Q. Lv, J. Xu, W. Yu, J. Ji, Y . Wang, Z. Wang, Y . Dong, M. Ding, et al. Cogagent: A visual language model for gui agents. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 14281–14290, 2024
2024
-
[15]
Hosseini, X
A. Hosseini, X. Yuan, N. Malkin, A. Courville, A. Sordoni, and R. Agarwal. V-star: Training verifiers for self-taught reasoners. arXiv preprint arXiv:2402.06457, 2024
2024 arXiv
-
[16]
J. Hu. Reinforce++: A simple and efficient approach for aligning large language models. arXiv preprint arXiv:2501.03262, 2025
2025 arXiv
-
[17]
Huang, B
W. Huang, B. Jia, Z. Zhai, S. Cao, Z. Ye, F. Zhao, Z. Xu, Y . Hu, and S. Lin. Vision-r1: Incentiviz- ing reasoning capability in multimodal large language models.arXiv preprint arXiv:2503.06749, 2025
2025 arXiv
-
[18]
A. K. Lampinen, I. Dasgupta, S. C. Chan, K. Matthewson, M. H. Tessler, A. Creswell, J. L. McClelland, J. X. Wang, and F. Hill. Can language models learn from explanations in context? arXiv preprint arXiv:2204.02329, 2022. 10
2022 arXiv
-
[19]
H. Lee, S. Oh, J. Kim, J. Shin, and J. Tack. Revise: Learning to refine at test-time via intrinsic self-verification. arXiv preprint arXiv:2502.14565, 2025
2025 arXiv
-
[20]
K. Li, Z. Meng, H. Lin, Z. Luo, Y . Tian, J. Ma, Z. Huang, and T.-S. Chua. Screenspot-pro: Gui grounding for professional high-resolution computer use. arXiv preprint arXiv:2504.07981, 2025
2025 arXiv
-
[21]
W. Li, W. Bishop, A. Li, C. Rawles, F. Campbell-Ajala, D. Tyamagundlu, and O. Riva. On the effects of data scale on computer control agents. arXiv preprint arXiv:2406.03679, 2024
2024 arXiv
-
[22]
K. Q. Lin, L. Li, D. Gao, Z. Yang, S. Wu, Z. Bai, W. Lei, L. Wang, and M. Z. Shou. Showui: One vision-language-action model for gui visual agent. arXiv preprint arXiv:2411.17465, 2024
2024 arXiv
-
[23]
Z. Lu, Y . Chai, Y . Guo, X. Yin, L. Liu, H. Wang, G. Xiong, and H. Li. Ui-r1: Enhancing action prediction of gui agents by reinforcement learning. arXiv preprint arXiv:2503.21620, 2025
2025 arXiv
-
[24]
X. Ma, Z. Ding, Z. Luo, C. Chen, Z. Guo, D. F. Wong, X. Feng, and M. Sun. Deeppercep- tion: Advancing r1-like cognitive visual perception in mllms for knowledge-intensive visual grounding. arXiv preprint arXiv:2503.12797, 2025
2025
-
[25]
M. Nye, A. J. Andreassen, G. Gur-Ari, H. Michalewski, J. Austin, D. Bieber, D. Dohan, A. Lewkowycz, M. Bosma, D. Luan, et al. Show your work: Scratchpads for intermediate computation with language models. arXiv preprint arXiv:2112.00114, 2021
2021 arXiv
- [26]
-
[27]
Oquab, T
M. Oquab, T. Darcet, T. Moutakanni, H. V o, M. Szafraniec, V . Khalidov, P. Fernandez, D. Haziza, F. Massa, A. El-Nouby, et al. Dinov2: Learning robust visual features without supervision. arXiv preprint arXiv:2304.07193, 2023
2023 arXiv
-
[28]
Y . Qin, Y . Ye, J. Fang, H. Wang, S. Liang, S. Tian, J. Zhang, J. Li, Y . Li, S. Huang, et al. Ui-tars: Pioneering automated gui interaction with native agents. arXiv preprint arXiv:2501.12326, 2025
2025 arXiv
-
[29]
S. J. Rennie, E. Marcheret, Y . Mroueh, J. Ross, and V . Goel. Self-critical sequence training for image captioning. In IEEE Conference on Computer Vision and Pattern Recognition, pages 7008–7024, 2017
2017
-
[30]
Rosenblat
M. Rosenblat. Remarks on some nonparametric estimates of a density function. Ann. Math. Stat, 27:832–837, 1956
1956
-
[31]
P. Shaw, M. Joshi, J. Cohan, J. Berant, P. Pasupat, H. Hu, U. Khandelwal, K. Lee, and K. N. Toutanova. From pixels to ui actions: Learning to follow instructions via graphical user interfaces. Advances in Neural Information Processing Systems, 36:34354–34370, 2023
2023
-
[32]
Snell, J
C. Snell, J. Lee, K. Xu, and A. Kumar. Scaling llm test-time compute optimally can be more effective than scaling model parameters. arXiv preprint arXiv:2408.03314, 2024
2024 arXiv
-
[33]
S. Wang, W. Liu, J. Chen, Y . Zhou, W. Gan, X. Zeng, Y . Che, S. Yu, X. Hao, K. Shao, et al. Gui agents with foundation models: A comprehensive survey. arXiv preprint arXiv:2411.04890, 2024
2024 arXiv
-
[34]
Wu and S
P. Wu and S. Xie. V*: Guided visual search as a core mechanism in multimodal llms. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 13084–13094, 2024
2024
-
[35]
Z. Wu, Z. Wu, F. Xu, Y . Wang, Q. Sun, C. Jia, K. Cheng, Z. Ding, L. Chen, P. P. Liang, et al. Os-atlas: A foundation action model for generalist gui agents. arXiv preprint arXiv:2410.23218, 2024
2024 arXiv
-
[36]
Xia and R
X. Xia and R. Luo. Gui-r1: A generalist r1-style vision-language action model for gui agents. arXiv preprint arXiv:2504.10458, 2025. 11
2025 arXiv
-
[37]
Y . Xu, Z. Wang, J. Wang, D. Lu, T. Xie, A. Saha, D. Sahoo, T. Yu, and C. Xiong. Aguvis: Unified pure vision agents for autonomous gui interaction. arXiv preprint arXiv:2412.04454, 2024
2024 arXiv
-
[38]
T. Yu, Y . Yao, H. Zhang, T. He, Y . Han, G. Cui, J. Hu, Z. Liu, H.-T. Zheng, M. Sun, et al. Rlhf-v: Towards trustworthy mllms via behavior alignment from fine-grained correctional human feedback. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni...
2024
-
[39]
Zhang, Z
J. Zhang, Z. Ding, C. Ma, Z. Chen, Q. Sun, Z. Lan, and J. He. Breaking the data barrier–building gui agents through task generalization. arXiv preprint arXiv:2504.10127, 2025
2025 arXiv
-
[40]
H. Zhao, T. Chen, and Z. Wang. On the robustness of gui grounding models against image attacks. arXiv preprint arXiv:2504.04716, 2025
2025 arXiv
-
[41]
golden trajectory
B. Zheng, B. Gou, J. Kil, H. Sun, and Y . Su. Gpt-4v(ision) is a generalist web agent, if grounded. In Forty-first International Conference on Machine Learning, 2024. URL https: //openreview.net/forum?id=piecKJ2DlB. 12 A Experimental Details In this section, we describe the ex...
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.