TL;DR
Vision Transformers (ViTs) struggle with high memory use and computational costs, limiting their use on low-resource devices. I-Segmenter is introduced as the first fully integer-only ViT for semantic segmentation, designed to mitigate these issues.
✦ Why It Matters
Engineers can now deploy advanced semantic segmentation models on resource-limited devices without sacrificing performance.
Key Takeaways
How It Works
I-Segmenter replaces floating-point operations in the segmentation pipeline with integer-only operations, which helps to reduce memory usage and computational costs. The introduction of λ-ShiftGELU as an activation function addresses the challenges posed by uniform quantization, particularly in managing long-tailed activation distributions.
By removing L2 normalization and using nearest neighbor upsampling, the entire model remains integer-compatible, ensuring efficient execution.
Related