Adaptively Bypassing Vision Transformer Blocks for Efficient Visual Tracking
Xiangyang Yang, Dan Zeng, Xucheng Wang, You Wu, Hengzhou Ye, Qijun Zhao, Shuiwang Li
TL;DR
This work tackles the efficiency bottleneck of transformer-based visual trackers on constrained hardware by presenting ABTrack, a framework that adaptively bypasses transformer blocks and prunes token dimensions. It introduces a Bypass Decision Module with p_i = $\sigma(l^i(b^i))$ and a threshold $\rho$ to selectively skip blocks, while enforcing non-bypass of the initial $n_{enf}$ layers to preserve low-level features. A vision transformer pruning method using dimension reduction matrices $\mathbf{D}_1$ and $\mathbf{D}_2$ with $L_1$ regularization enables end-to-end training and subsequent binarization for runtime efficiency, with a local ranking strategy outperforming global ranking. The system is evaluated across multiple benchmarks, delivering state-of-the-art real-time performance with minimal gains in accuracy, and demonstrates broad applicability across different ViT backbones and trackers. Overall, ABTrack provides a practical, generalizable approach to adaptive computation in vision transformers, facilitating efficient deployment of high-accuracy tracking on edge devices.
Abstract
Empowered by transformer-based models, visual tracking has advanced significantly. However, the slow speed of current trackers limits their applicability on devices with constrained computational resources. To address this challenge, we introduce ABTrack, an adaptive computation framework that adaptively bypassing transformer blocks for efficient visual tracking. The rationale behind ABTrack is rooted in the observation that semantic features or relations do not uniformly impact the tracking task across all abstraction levels. Instead, this impact varies based on the characteristics of the target and the scene it occupies. Consequently, disregarding insignificant semantic features or relations at certain abstraction levels may not significantly affect the tracking accuracy. We propose a Bypass Decision Module (BDM) to determine if a transformer block should be bypassed, which adaptively simplifies the architecture of ViTs and thus speeds up the inference process. To counteract the time cost incurred by the BDMs and further enhance the efficiency of ViTs, we introduce a novel ViT pruning method to reduce the dimension of the latent representation of tokens in each transformer block. Extensive experiments on multiple tracking benchmarks validate the effectiveness and generality of the proposed method and show that it achieves state-of-the-art performance. Code is released at: https://github.com/xyyang317/ABTrack.
