TL;DR
Deploying CLIP (a vision-language model) with INT8 quantization—compressing weights to 8-bit integers—causes embedding vectors to drift in direction, breaking zero-shot image retrieval. Researchers identified this failure mode as Quantization-Induced Representation Collapse (QIRC) and proposed Spatio-Semantic Early Exit, which bypasses transformer blocks when embeddings stabilize.
✦ Why It Matters
Engineers can deploy CLIP on edge devices with INT8 quantization without sacrificing retrieval accuracy using early exit strategies.
Key Takeaways
How It Works
LRA-EE employs Spatio-Semantic Aggregation to replace the shallow [CLS] token with a global average of patch tokens, allowing the model to exit early from layers that are saturated with noise. It also incorporates a learned multi-feature gate that assesses confidence, top-2 margin, and spatial-activation variance, along with Layer-adaptive Confidence Thresholding to optimize performance based on each layer's Information-to-Noise Ratio.
Related