IVCVFeb 26, 2021

Convolution-Free Medical Image Segmentation using Transformers

arXiv:2102.13645v2150 citations
AI Analysis

This addresses medical image segmentation for healthcare applications by introducing a novel approach that outperforms CNNs, though it is incremental as it builds on transformer architectures.

The paper tackled medical image segmentation by proposing a convolution-free method based on self-attention between image patches, achieving better than state-of-the-art accuracies on three datasets and showing significant advantages with pre-training when labeled data is limited.

Like other applications in computer vision, medical image segmentation has been most successfully addressed using deep learning models that rely on the convolution operation as their main building block. Convolutions enjoy important properties such as sparse interactions, weight sharing, and translation equivariance. These properties give convolutional neural networks (CNNs) a strong and useful inductive bias for vision tasks. In this work we show that a different method, based entirely on self-attention between neighboring image patches and without any convolution operations, can achieve competitive or better results. Given a 3D image block, our network divides it into $n^3$ 3D patches, where $n=3 \text{ or } 5$ and computes a 1D embedding for each patch. The network predicts the segmentation map for the center patch of the block based on the self-attention between these patch embeddings. We show that the proposed model can achieve segmentation accuracies that are better than the state of the art CNNs on three datasets. We also propose methods for pre-training this model on large corpora of unlabeled images. Our experiments show that with pre-training the advantage of our proposed network over CNNs can be significant when labeled training data is small.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes