Papers
Topics
Authors
Recent
Search
2000 character limit reached

Visual-Guided Key-Token Regularization

Updated 5 February 2026
  • The paper introduces ViKeR, a method that uses visual guidance and token-level regularization to precisely forget sensitive content without degrading overall model performance.
  • ViKeR distinguishes between key and normal tokens through information entropy, ensuring retention of non-sensitive data while targeting privacy-critical tokens.
  • Experimental results on MLLMU and CLEAR benchmarks demonstrate superior retention of fluency and factuality compared to baseline methods.

Visual-Guided Key-Token Regularization (ViKeR) is a methodology for unlearning in multimodal LLMs (MLLMs) designed to ensure that sensitive information, particularly that associated with certain visual inputs, is effectively forgotten by the model without loss of general utility or fluency. Unlike prior approaches, ViKeR utilizes irrelevant visual cues to guide the regularization process at the token level, focusing forgetting pressure precisely on those answer tokens that are genuinely privacy-critical, as determined by their information entropy in the context of the unlearning objective (Cai et al., 29 Jan 2026).

1. Formulation of the MLLM Unlearning Problem

ViKeR is proposed in the context of auto-regressive MLLMs parameterized by θ. Training examples are structured as triples s=(I,x,y)s = (I, x, y), where II denotes an image, xx the question, and y=[y1,...,yy]y = [y_1, ..., y_{|y|}] the ground-truth answer tokens. At generation step ii, the token-level output distribution is given by pθ(vI,x,i)p_\theta(v|I, x, i). The standard negative log-likelihood loss over the (pre-unlearning) training dataset DfullD_{full} is

LNLL(Dfull;θ)=1Dfull(I,x,y)Dfulllogp(yI,x;θ)L_{NLL}(D_{full}; \theta) = -\frac{1}{|D_{full}|}\sum_{(I,x,y)\in D_{full}} \log p(y|I,x; \theta)

Unlearning is posed as updating model parameters using a designated forget set DfDfullD_f \subset D_{full} (where DfDfull|D_f| \ll |D_{full}|) such that the model achieves:

  1. Forgetting: For all II0, II1 does not predict II2;
  2. Retention: For all II3, II4's behavior is preserved;
  3. Coherence: For all inputs II5, outputs remain fluent.

2. Key Token Identification via Information Entropy

ViKeR addresses the unlearning challenge at token granularity by differentiating between key and normal tokens. The ideal post-unlearning token distribution at position II6 in an answer II7 is II8 (approximated via visual guidance). The entropy II9 for a token distribution xx0 over vocabulary xx1 is

xx2

A token xx3 is defined as normal if xx4, leading to xx5. In contrast, xx6 is considered a key token if xx7 for some xx8, reflecting uncertainty in its ideal distribution—typically associated with identity-revealing or sensitive content.

3. Visual-Guided Estimation of Ideal Token Distributions

To estimate xx9, ViKeR uses k irrelevant reference images y=[y1,...,yy]y = [y_1, ..., y_{|y|}]0 (e.g., images of random celebrities not in y=[y1,...,yy]y = [y_1, ..., y_{|y|}]1). For each y=[y1,...,yy]y = [y_1, ..., y_{|y|}]2 in y=[y1,...,yy]y = [y_1, ..., y_{|y|}]3, the MLLM (pre-unlearning) produces per-token distributions y=[y1,...,yy]y = [y_1, ..., y_{|y|}]4. The estimated ideal distribution is the average over y=[y1,...,yy]y = [y_1, ..., y_{|y|}]5 references:

y=[y1,...,yy]y = [y_1, ..., y_{|y|}]6

Normal tokens retain peaked distributions at y=[y1,...,yy]y = [y_1, ..., y_{|y|}]7; key tokens’ distributions flatten, expressing uncertainty and thus diminishing memorization.

4. Regularization Strategy and Loss Function

The ViKeR loss combines a negative log-likelihood gradient-ascent term (to enforce forgetting in y=[y1,...,yy]y = [y_1, ..., y_{|y|}]8) with a KL-regularization term aligning the post-unlearning token distributions with their ideal estimates:

y=[y1,...,yy]y = [y_1, ..., y_{|y|}]9

where ii0 is the current model prediction, and ii1 controls the forgetting-to-coherence trade-off.

5. Token-Level Gradient Reweighting

A distinguishing mechanism of ViKeR is its effect on the token-wise learning signal. The gradient of the KL term with respect to θ satisfies

ii2

For normal tokens, ii3, so the scale ii4 reduces (or zeroes) the forgetting signal. For key tokens, ii5 is small, so the scale ii6 is substantially larger, amplifying the forgetting gradient. This selective pressure effectively erases only sensitive content while maintaining general fluency and factuality.

6. Experimental Validation and Benchmarks

ViKeR’s efficacy was empirically demonstrated on the MLLMU and CLEAR benchmarks:

Setting Forgetting (ACC/REC ↓) Retention (ROUGE/REC ↑) Coherence (GIB ↑)
MLLMU-15% ~32% ACC +41.4% ROUGE, +21.1% BLEU ~94.6%
CLEAR-10% +0.48% REC loss (Forget), +3.41% REC (Retain) Matches top QA Top-tier
  • Base: LLaVA-7B with LoRA (rank=8, ii7), vision encoder frozen.
  • Unlearning: AdamW (lr=5e-6), batch=2, single epoch.
  • Metrics: Multi-choice accuracy (forgetting), ROUGE-L/BLEU (content preservation), GIB (fluency).
  • Baselines: Gradient ascent (GA), Negative preference optimization (NPO), IdkPO.

These results show that ViKeR achieves competitive forgetting, with substantially higher content retention and output coherence relative to baselines. Visualization of token distributions confirms that ViKeR targets high-entropy (private) tokens for erasure, preserving other information.

7. Implementation Considerations and Ablations

Key hyperparameters include ii8 (controlling regularization strength; e.g., ii9 for MLLMU-10%, pθ(vI,x,i)p_\theta(v|I, x, i)0 for MLLMU-15%, pθ(vI,x,i)p_\theta(v|I, x, i)1 for CLEAR) and number of reference images pθ(vI,x,i)p_\theta(v|I, x, i)2, with performance stabilizing for pθ(vI,x,i)p_\theta(v|I, x, i)3.

Ablation studies indicate:

  1. Removing the regularizer reduces ViKeR to pure GA, resulting in total forgetting and incoherence.
  2. Omitting the GA term fails to achieve unlearning.
  3. Excluding visual guidance leads to poor retention.
  4. Substituting alternative regularizers (cosine similarity, JSD) yields inferior trade-offs.
  5. Using irrelevant people as references outperforms pets, scenes, or textures for the reference set.

ViKeR thus formulates multimodal model unlearning as token-level distribution alignment, regularized by visually guided ideal distributions, and achieves selective, entropy-based forgetting with efficient retention and coherence (Cai et al., 29 Jan 2026).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Visual-Guided Key-Token Regularization (ViKeR).