Selective Coupling of Decoupled Informative Regions: Masked Attention Alignment for Data-Free Quantization of Vision Transformers

2026-06-03Computer Vision and Pattern Recognition

Computer Vision and Pattern RecognitionArtificial Intelligence
AI summary

The authors address the challenge of compressing Vision Transformer models without using real data by creating synthetic samples, a process called Data-Free Quantization (DFQ). They found that only certain small regions, called informative regions, in the self-attention maps carry important information. Their method, MaskAQ, focuses on these regions to better match the behavior of the original model during quantization, improving performance. They also introduce a way to regularly update the synthetic samples as the quantized model changes during training. Their experiments show that MaskAQ outperforms previous methods on various models and tasks.

Data-Free QuantizationVision TransformersSelf-AttentionSynthetic SamplesInformative RegionsDifferential EntropyMutual InformationModel QuantizationMasked AttentionPeriodic Sample Refreshing
Authors
Biao Qian, Yang Wang, Yong Wu, Jungong Han
Abstract
Data-Free Quantization (DFQ) addresses data security concerns by synthesizing samples, without accessing real data. It has garnered increasing attention in the context of Vision Transformers (ViTs), owing to the superiority of the self-attention mechanism compared to classical convolutional operation. However, previous DFQ arts for ViTs often suffer from a distribution mismatch between synthetic samples and input distribution expected by quantized models Q, resulting in the suboptimal performance. In this paper, we propose a novel Masked Attention Alignment approach for Data-Free Quantization of ViTs, named MaskAQ, revealing that: 1) the semantics in the self-attention mechanism is predominantly localized to a sparse subset of patches, called informative regions; 2) the informative regions dominate the mutual information between synthetic samples and Q's outputs. To these ends, we incorporate differential entropy maximum over patch similarity of synthetic samples, to decouple informative regions from noisy background. To couple with varied Q, the informative regions are selected to align full-precision models with Q via a masked attention alignment objective, thus yielding high-quality synthetic samples. Furthermore, a periodic sample refreshing strategy comes up to endow MaskAQ with the capacity to continually adapt to the evolving state of Q throughout the training process, to preserve desirable mutual information with synthetic samples. Extensive experiments verify the merits of MaskAQ over state-of-the-art approaches across multiple backbones and downstream tasks. Our code is available at https://github.com/hfutqian/MaskAQ.