Data Generation for Hardware-Friendly Post-Training Quantization
Lior Dikstein, Ariel Lapid, Arnon Netzer, Hai Victor Habi
TL;DR
This work tackles the challenge of zero-shot post-training quantization under privacy constraints by analyzing BN-based data generation and identifying three critical gaps: aggregation scope, data augmentation handling, and output-layer distribution mismatch. It introduces DGH, a method that unifies global BN-statistics aggregation, augmentation-aware preprocessing with image priors, and an output distribution stretching loss to align synthetic data with real data across all quantized layers. Empirical results on ImageNet and COCO show that DGH delivers up to 30% improvements in hardware-friendly ZSQ and can match real-data performance in many settings, across classification and object detection; the approach is compatible with multiple PTQ algorithms. The work also provides ablations to isolate the impact of each component and demonstrates broad applicability, with code and integration into open-source toolkits. This advances practical deployment of fully quantized models on resource-constrained hardware by enabling more accurate calibration with synthetic data.
Abstract
Zero-shot quantization (ZSQ) using synthetic data is a key approach for post-training quantization (PTQ) under privacy and security constraints. However, existing data generation methods often struggle to effectively generate data suitable for hardware-friendly quantization, where all model layers are quantized. We analyze existing data generation methods based on batch normalization (BN) matching and identify several gaps between synthetic and real data: 1) Current generation algorithms do not optimize the entire synthetic dataset simultaneously; 2) Data augmentations applied during training are often overlooked; and 3) A distribution shift occurs in the final model layers due to the absence of BN in those layers. These gaps negatively impact ZSQ performance, particularly in hardware-friendly quantization scenarios. In this work, we propose Data Generation for Hardware-friendly quantization (DGH), a novel method that addresses these gaps. DGH jointly optimizes all generated images, regardless of the image set size or GPU memory constraints. To address data augmentation mismatches, DGH includes a preprocessing stage that mimics the augmentation process and enhances image quality by incorporating natural image priors. Finally, we propose a new distribution-stretching loss that aligns the support of the feature map distribution between real and synthetic data. This loss is applied to the model's output and can be adapted to various tasks. DGH demonstrates significant improvements in quantization performance across multiple tasks, achieving up to a 30% increase in accuracy for hardware-friendly ZSQ in both classification and object detection, often performing on par with real data.
