Accelerating Vision Transformers with Adaptive Patch Sizes
Rohan Choudhury, JungEun Kim, Jinhyung Park, Eunho Yang, László A. Jeni, Kris M. Kitani
TL;DR
Vision Transformers suffer from quadratic self-attention cost with long input sequences when processing high-resolution images. The Adaptive Patch Transformer (APT) introduces content-aware patch sizes by partitioning images with a multi-scale, entropy-based criterion and merging patches into a common embedding via a zero-initialized MLP, enabling fast training and inference. Across ImageNet-scale classification and dense vision tasks (VQA, object detection, semantic segmentation), APT delivers substantial wall-clock speedups (up to ~40–50% for large ViTs and higher resolutions) with negligible or no loss in accuracy, and can converge in as little as 1 epoch when fine-tuning from pretrained checkpoints. By supporting sequence packing and compatibility with window attention, APT generalizes to a broad range of vision problems beyond classification, offering a practical path to more efficient ViT deployment.
Abstract
Vision Transformers (ViTs) partition input images into uniformly sized patches regardless of their content, resulting in long input sequence lengths for high-resolution images. We present Adaptive Patch Transformers (APT), which addresses this by using multiple different patch sizes within the same image. APT reduces the total number of input tokens by allocating larger patch sizes in more homogeneous areas and smaller patches in more complex ones. APT achieves a drastic speedup in ViT inference and training, increasing throughput by 40% on ViT-L and 50% on ViT-H while maintaining downstream performance, and can be applied to a previously fine-tuned ViT, converging in as little as 1 epoch. It also significantly reduces training and inference time without loss of performance in high-resolution dense visual tasks, achieving up to 30\% faster training and inference in visual QA, object detection, and semantic segmentation.
