paper-with-me

홈 › Papers

Beyond Self-Attention: Sub-Quadratic Vision Transformers for Fast Image Captioning

2026-06-07 · Chiradeep Ghosh, Dakshina Ranjan Kisku arxiv

Image captioning is a challenging and significant task that aims to generate coherent and semantically meaningful textual descriptions for given images. To accomplish this task, it requires a deep understanding of visual content along with the ability to express that understanding in natural language. Despite remarkable progress with transformer-based architectures, existing approaches often suffer from limitations, such as a lack of rich local feature representations and the high computational cost of quadratic self-attention. The proposed model focuses on improving computational efficiency by restructuring the vision transformer architecture. In designing this approach, the standard self-attention mechanism in Vision Transformers is replaced with a probabilistic transformer approach based on a Gaussian Mixture Model (GMM), a soft-clustering technique. Instead of computing pairwise attention among all image patches, the model groups similar patches into a fixed number of clusters using an Expectation-Maximization (EM) algorithm. This clustering-based mechanism reduces the computational complexity from quadratic O(n^2) to linear O(nK), where K << n. The autoregressive GPT-based decoder is used for caption generation. The model is evaluated on the Flickr 30K dataset, demonstrating competitive and significant improvement over existing works.

📄 PDF Abstract BibTeX arXiv:2606.14753

Code (0)

등록된 구현이 없습니다.

Tasks

Computational EfficiencyImage Captioning

Similar Papers 제목 키워드 기반

XCiT: Cross-Covariance Image Transformers

2021-06-17 · NeurIPS 2021 12 · Alaaeldin El-Nouby, Hugo Touvron, Mathilde Caron, Piotr Bojanowski 외

Following their success in natural language processing, transformers have recently shown much promise for computer vision. The self-attention operation underlying transformers yields global interactions between all token…

image-classificationImage ClassificationInstance Segmentationobject-detection+3

Self-Attention And Beyond the Infinite: Towards Linear Transformers with Infinite Self-Attention

2026-02-26 · Giorgio Roffo, Hazem Abdelkawy, Nilli Lavie, Luke Palmer arxiv

The quadratic cost of softmax attention limits Transformer scalability in high-resolution vision. We introduce Infinite Self-Attention (InfSA), a spectral reformulation that treats each attention layer as a diffusion ste…

Audio Mamba: Bidirectional State Space Model for Audio Representation Learning

2024-06-05 · Mehmet Hamza Erol, Arda Senocak, Jiu Feng, Joon Son Chung

Transformers have rapidly become the preferred choice for audio classification, surpassing methods based on CNNs. However, Audio Spectrogram Transformers (ASTs) exhibit quadratic scaling due to self-attention. The remova…

Audio ClassificationClassificationMambaRepresentation Learning+1

Hydra Attention: Efficient Attention with Many Heads

2022-09-15 · Daniel Bolya, Cheng-Yang Fu, Xiaoliang Dai, Peizhao Zhang 외

While transformers have begun to dominate many tasks in vision, applying them to large images is still computationally difficult. A large reason for this is that self-attention scales quadratically with the number of tok…

Armour: Generalizable Compact Self-Attention for Vision Transformers

2021-08-03 · Lingchuan Meng

Attention-based transformer networks have demonstrated promising potential as their applications extend from natural language processing to vision. However, despite the recent improvements, such as sub-quadratic attentio…