Daily Tech Briefing
AI 科技速览
每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。
arXiv Machine Learning · 2026/7/28 04:00:00
Same Predictions, Different Reasons: The Effect of Quantization on Model Explanations
AI 中文解读
量化模型虽然保留了预测精度,但内部推理逻辑可能已经“变味”——这项研究揭示了压缩技术在AI“黑箱”里埋下的隐患。
研究人员给5种主流CNN模型“减肥”,把高精度权重压缩到低精度(INT8和INT4),然后用Grad-CAM和LIME两种方法对比减肥前后的解释性。结果发现,虽然模型的分类准确率基本没变,但它们的“思考过程”却大相径庭:比如DenseNet161表现稳健,特征一致性很好;而EfficientNet-B0在INT8精度下虽然分类准确率和空间注意力都很棒,但输入层面的特征归因却大幅下降。这说明,光看准确率来判断量化模型是否靠谱,远远不够,架构选择与量化策略同样关键。
这对普通用户最大的影响是:当我们在手机、智能摄像头等边缘设备上使用量化部署的AI时,不能盲目信任它的判断依据。比如医疗影像诊断或自动驾驶场景,AI给出正确答案固然重要,但它的“理由”是否合理直接决定了我们能否放心让它做决定。未来选择AI设备或服务时,除了关注性能指标,更要留意厂商是否做了解释性的验证。
arXiv:2607.22872v1 Announce Type: new
Abstract: Post-training quantization (PTQ) has become a practical solution for deploying deep learning models on resource-constrained edge devices by compressing high-precision floating-point weights into low-precision representations without requiring retraining. Past research has demonstrated that quantization largely preserves classification accuracy; however, whether it also preserves the model's internal reasoning remains an open question. This study presents a systematic evaluation on how static PTQ affects the interpretability / explainability of five widely used CNN architectures: VGG19, ResNet18, EfficientNet-B0, DenseNet161, and MobileNetV2 at INT8 and INT4 precision. We employ a dual interpretability framework that combines Grad-CAM for spatial attention analysis with LIME for input-level feature attribution, and systematically compare full-precision and quantized models on two binary classification datasets. Interpretability is evaluated using three complementary metrics: the Pearson correlation coefficient, structural similarity index, and top-20% IoU to capture distributional and structural variations in model explanations, supplemented by deletion/insertion faithfulness analysis. The results show that classification accuracy is not a reliable indicator of interpretability stability under reduced precision. DenseNet161 maintains strong feature consistency across both precision levels, whereas EfficientNet-B0, despite achieving competitive spatial attention and classification accuracy at INT8 precision, exhibits a substantial degradation in input-level feature attribution. These findings have direct implications for the trustworthy deployment of quantized models in applications with high interpretability requirements, demonstrating that architecture selection is as important as the quantization strategy.
分享
阅读原文 ↗