paper-with-me

Papers

FViT: A Focal Vision Transformer with Gabor Filter

2024-02-17 · Yulong Shi, Mingwei Sun, Yongshuai Wang, Zengqiang Chen

Vision transformers have achieved encouraging progress in various computer vision tasks. A common belief is that this is attributed to the capability of self-attention in modeling the global dependencies among feature tokens. However, self-attention still faces several challenges in dense prediction tasks, including high computational complexity and absence of desirable inductive bias. To alleviate these issues, the potential advantages of combining vision transformers with Gabor filters are revisited, and a learnable Gabor filter (LGF) using convolution is proposed. The LGF does not rely on self-attention, and it is used to simulate the response of fundamental cells in the biological visual system to the input images. This encourages vision transformers to focus on discriminative feature representations of targets across different scales and orientations. In addition, a Bionic Focal Vision (BFV) block is designed based on the LGF. This block draws inspiration from neuroscience and introduces a Dual-Path Feed Forward Network (DPFFN) to emulate the parallel and cascaded information processing scheme of the biological visual cortex. Furthermore, a unified and efficient family of pyramid backbone networks called Focal Vision Transformers (FViTs) is developed by stacking BFV blocks. Experimental results indicate that FViTs demonstrate superior performance in various vision tasks. In terms of computational efficiency and scalability, FViTs show significant advantages compared with other counterparts.

📄 PDF Abstract BibTeX arXiv:2402.11303

Code (1)

nkusyl/fvit 공식 구현 pytorch

Tasks

Computational EfficiencyInductive Bias

Methods 이 논문이 사용한 방법론

Attention 설명 없음
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Multi-Head Attention 설명 없음
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
Residual Connection 설명 없음
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…

Similar Papers 제목 키워드 기반

Improving Interpretation Faithfulness for Vision Transformers

2023-11-29 · Lijie Hu, Yixin Liu, Ninghao Liu, Mengdi Huai 외

Vision Transformers (ViTs) have achieved state-of-the-art performance for various vision tasks. One reason behind the success lies in their ability to provide plausible innate explanations for the behavior of neural arch…

Denoising

Hint-Aug: Drawing Hints from Foundation Vision Transformers Towards Boosted Few-Shot Parameter-Efficient Tuning

2023-04-25 · CVPR 2023 1 · Zhongzhi Yu, Shang Wu, Yonggan Fu, Shunyao Zhang 외

Despite the growing demand for tuning foundation vision transformers (FViTs) on downstream tasks, fully unleashing FViTs' potential under data-limited scenarios (e.g., few-shot tuning) remains a challenge due to FViTs' d…

Data Augmentation

Part-based Face Recognition with Vision Transformers

2022-11-30 · Zhonglin Sun, Georgios Tzimiropoulos

Holistic methods using CNNs and margin-based losses have dominated research on face recognition. In this work, we depart from this setting in two ways: (a) we employ the Vision Transformer as an architecture for training…

Face Recognition

FViT-Grasp: Grasping Objects With Using Fast Vision Transformers

2023-11-23 · Arda Sarp Yenicesu, Berk Cicek, Ozgur S. Oguz

This study addresses the challenge of manipulation, a prominent issue in robotics. We have devised a novel methodology for swiftly and precisely identifying the optimal grasp point for a robot to manipulate an object. Ou…

Robotic Grasping

[Re] Improving Interpretation Faithfulness for Vision Transformers

2025-09-18 · Izabela Kurek, Wojciech Trejter, Stipe Frkovic, Andro Erdelez arxiv

This work aims to reproduce the results of Faithful Vision Transformers (FViTs) proposed by arXiv:2311.17983 alongside interpretability methods for Vision Transformers from arXiv:2012.09838 and Xu (2022) et al. We invest…