Preprint arXiv:2602.07008 2026

Where Not to Learn

Prior-Aligned Training with Subset-based Attribution Constraints

Correct predictions are not enough. We train models to shift their attributed evidence toward specified human priors—without suppressing every piece of surrounding context.

Ruoyu Chen1, Shangquan Sun2, Xiaoqing Guo3, Kangwei Liu1, Sanyi Zhang4, Zhangcheng Wang5, Shiming Liu6, Qunli Zhang6, Wei Wang1, Hua Zhang1, Xiaochun Cao1
1University of Chinese Academy of Sciences 2Nanyang Technological University 3Hong Kong Baptist University 4Communication University of China 5ByteDance 6Imperial College London
01 / Motivation

A model can arrive at the right answer while attending to the wrong evidence. Human priors turn this hidden mismatch into a trainable signal.

The problem

Right answer.
Wrong reason.

Ordinary supervision constrains the output. It rarely specifies which evidence is acceptable for producing it.

Abstract

Reliable models should not only predict correctly, but also base their decisions on acceptable evidence. Yet class-level supervision can reward shortcuts that never touch the intended object or interface element.

We periodically expose compact decision-supporting regions with subset-selection attribution, compare them with human-provided masks or boxes, and penalize influential evidence that falls off-prior.

Across image classification and MLLM-based GUI clicking, the resulting models improve observed task performance and attribution–prior alignment.

01

Outputs under-specify evidence

Two models may make the same prediction while relying on very different regions.

02

Human priors are weak signals

Masks and target boxes guide acceptable evidence, but are not treated as causal ground truth.

03

Alignment should be selective

We target influential off-prior regions rather than erasing all contextual information.

The method

Constrain the evidence,
not the architecture.

One alignment principle spans discriminative classifiers and autoregressive GUI agents: identify compact supporting subsets, then act only on evidence that violates the supplied prior.

01
Input

Predict normally

Optimize the standard task objective on every step.

02
Rank

Expose evidence

LIMA or EAGLE ranks compact input regions by decision influence.

03
Gate

Compare with prior

Overlap gates isolate top-ranked and higher-order off-prior regions.

04
Align

Shift attribution

Selective losses discourage off-prior utility and marginal gains.

Top-ranked evidence

Deviation loss

When the most influential region lies outside the human prior, suppress its singleton utility. If it is prior-consistent, this term stays off.

Ldev = F({vπ1}) · 𝟙[off-prior]
Higher-order evidence

Redundancy loss

For every later off-prior region, penalize only its positive marginal gain. This gate operates independently of the top-ranked region.

Lred = Σ ReLU(Δr) · 𝟙[off-prior]
One principle, two prediction settings
Classification

LIMA

Target-class confidence under retained and complementary image subsets.

Code ↗
GUI agent

EAGLE

Token-level insight and necessity across the thinking–action sequence.

Code ↗

Results at a glance

Better decisions,
better-aligned attribution.

6 / 6classification settings improve clean Top-1 accuracy over fine-tuning
68.64%average clean accuracy across six matched-supervision comparisons
89.23%GUI click success with attribution-constrained SFT
0.8615GUI Point Game, the best result among evaluated methods

Classification values are reported over three independent runs unless noted. The 936-task GUI study uses one training run per method and should be read as a preliminary proof of concept.

Track 01

Image classification

Attribution moves toward the object.

Across Saliency-Bench and ImageNet-S, our method improves clean accuracy for CLIP, ViT, and ResNet-101 while increasing LIMA-based Point Game in all reported comparisons.

Classification repository
Figure 02 LIMA attribution maps on Saliency-Bench and ImageNet-S. White contours mark the supplied target-object priors.
Clean performance

Fine-tuning → Ours

Accuracy and attribution–prior Point Game

DatasetBackboneTop-1 accuracyPoint Game
Saliency-BenchCLIP61.61 → 65.430.4567 → 0.4733
ViT (base)53.82 → 58.060.4933 → 0.5031
ResNet-10141.16 → 55.900.4533 → 0.5600
ImageNet-SCLIP79.05 → 79.840.7633 → 0.8233
ViT (base)79.05 → 79.440.8700 → 0.8767
ResNet-10170.30 → 73.140.8633 → 0.8833

Values shown as percentages for Top-1 accuracy. Full mean ± standard deviation results and all baselines are in the paper.

5 / 6

independent evaluator combinations improve over fine-tuning using RISE or gradient-based attribution.

+11.01

point gain for ResNet Grad-CAM: 37.90% → 48.91%.

+5.67

point gain for ResNet RISE: 40.33% → 46.00%.

Track 02

MLLM-based GUI agent

The click and its evidence move together.

On 936 single-step Android tasks, attribution-constrained SFT produces the highest click success and the highest target-box Point Game among the evaluated methods.

GUI agent repository
AgentCPM-GUI · single run

Task performance & attribution alignment

MethodClick success ↑Distance error ↓Point Game ↑
SFT (LoRA)84.61%94.710.8153
Box-Guided Aug. SFT86.15%85.260.8462
Task-Reward GRPO87.69%78.420.7692
Ours (LoRA)89.23%78.640.8615

GRPO has a marginally lower distance error by 0.22; our method leads click success and Point Game. These descriptive single-run results do not establish deployment reliability.

Figure 03 Representative clicks, attribution maps, and target UI boxes.
Figure 04 Both agents click correctly; the attributed evidence is not the same.
Failure analysisOpen case study +

Better localization can still end in the wrong action.

Neither model outputs a POINT in this example. Our method emphasizes the intended follow control more clearly, but still returns a STATUS. Attribution–prior overlap is evidence of localization consistency—not proof of causal grounding or safety.

Training behavior

A selective constraint needs a measured dose.

Applying attribution alignment too frequently can disrupt the main task, while an overly large deviation weight can dominate standard supervision. The method therefore uses intermittent, confidence-gated updates.

  • Classification alignment: every 10 steps
  • GUI alignment: every 5 steps
  • Applied only to confidently correct predictions
Figure 05 Accuracy sensitivity to alignment interval and deviation-loss weight.

Resources

Paper, code,
and citation.

BibTeX

Cite this work

@article{chen2026where,
  title   = {Where Not to Learn: Prior-Aligned Training with Subset-based Attribution Constraints},
  author  = {Chen, Ruoyu and Sun, Shangquan and Guo, Xiaoqing and Liu, Kangwei and Zhang, Sanyi and Wang, Zhangcheng and Liu, Shiming and Zhang, Qunli and Wang, Wei and Zhang, Hua and Cao, Xiaochun},
  journal = {arXiv preprint arXiv:2602.07008},
  year    = {2026}
}