Skip to main content
QUICK REVIEW

[論文レビュー] LeViT-UNet: Make Faster Encoders with Transformer for Medical Image Segmentation

Guoping Xu, Xingrong Wu|arXiv (Cornell University)|Jul 19, 2021
Advanced Neural Network Applications参考文献 39被引用数 54
ひとこと要約

LeViT-UNetはLeViTトランスフォーマーベースのエンコーダをU-Net風デコーダに埋め込み、トランスフォーマーとCNNブロックの両方からのマルチスケール特徴を統合して、高速で正確な2D医療画像分割を実現します。Synapseで競争力のある精度とエッジ予測の改善を示し、ACDCで強い一般化を示します。

ABSTRACT

Medical image segmentation plays an essential role in developing computer-assisted diagnosis and therapy systems, yet still faces many challenges. In the past few years, the popular encoder-decoder architectures based on CNNs (e.g., U-Net) have been successfully applied in the task of medical image segmentation. However, due to the locality of convolution operations, they demonstrate limitations in learning global context and long-range spatial relations. Recently, several researchers try to introduce transformers to both the encoder and decoder components with promising results, but the efficiency requires further improvement due to the high computational complexity of transformers. In this paper, we propose LeViT-UNet, which integrates a LeViT Transformer module into the U-Net architecture, for fast and accurate medical image segmentation. Specifically, we use LeViT as the encoder of the LeViT-UNet, which better trades off the accuracy and efficiency of the Transformer block. Moreover, multi-scale feature maps from transformer blocks and convolutional blocks of LeViT are passed into the decoder via skip-connection, which can effectively reuse the spatial information of the feature maps. Our experiments indicate that the proposed LeViT-UNet achieves better performance comparing to various competing methods on several challenging medical image segmentation benchmarks including Synapse and ACDC. Code and models will be publicly available at https://github.com/apple1986/LeViT_UNet.

研究の動機と目的

  • トランスフォーマーに基づくグローバルコンテキストとCNNのローカル機能を組み合わせて医用画像分割の改善を動機づける。
  • U-Net風デコーダに統合された軽量なLeViTベースのエンコーダを提案する。
  • トランスフォーマーと畳み込み特徴の両方を活用するためのマルチスケール特徴融合戦略を開発する。
  • 複数の医用分割ベンチマークで精度と効率を評価する。

提案手法

  • エンコーダとしてLeViTを用い、計算量FLOPsを削減してグローバルコンテキストを抽出する。
  • エンコーダの最終段で畳み込みブロックとトランスフォーマーブロックのマルチスケール特徴を結合する。
  • 分解能回復のためにスキップ接続を備えたCNNベースのデコーダを保持する。
  • LeViTのバックボーンをImageNet-1kで事前学習してパラメータを初期化する。
  • LeViT-UNet-128s、-192、-384の3つのバリアントを比較してチャンネル効果と性能を検討する。
  • トランスフォーマーの有無、スキップ接続、事前学習の影響を理解するためにアブレーションを実施する。

実験結果

リサーチクエスチョン

  • RQ1LeViTベースのエンコーダは、U-Netフレームワーク内でリアルタイム性に近い効率を維持しつつ分割精度を向上させられるか。
  • RQ2トランスフォーマーとCNN特徴のマルチスケール融合は、グローバルコンテキストと局所ディテールの両方を強化するか。
  • RQ3トランスフォーマーチャンネル数とスキップ接続の数は、分割性能と境界精度にどのような影響を与えるか。
  • RQ4LeViT-UNetは標準的な医用データセット(Synapse、ACDC)で、最先端のCNNおよびトランスフォーマーベース手法と比較してどのような性能を示すか。

主な発見

MethodsDSC ↓?HD ↓?AortaGallbladderKidney(L)Kidney(R)LiverPancreasSpleenStomach# params(M)FLOPs(G)FPS
V-Net68.81-75.3451.8777.1080.7587.8440.0580.5656.98---
DARR69.77-74.7453.7772.3173.2494.0854.1889.9045.96---
U-Net76.8539.7089.0769.7277.7768.6093.4353.9886.6775.58---
R50 U-Net74.6836.8787.7463.6680.6078.1993.7456.9085.8774.16---
R50 Att-UNet75.5736.9755.9263.9179.2072.7193.5649.3787.1974.95---
R50-Deeplabv3+75.7326.9386.1860.4281.1875.2792.8651.0688.6970.19---
R50 ViT71.2932.8773.7355.1375.8072.2091.5145.9981.9973.95---
TransUnet77.4831.6987.2363.1381.8777.0294.0855.8685.0875.62105.2824.6450
SwinUnet79.1321.5585.4766.5383.2879.6194.2956.5890.6676.60---
LeViT-UNet-128s73.6923.9286.4566.1379.3273.5691.8549.2579.2963.7015.9117.55114
LeViT-UNet-19274.6718.8685.6957.3779.0875.9092.0553.5383.1170.6119.9018.9295
LeViT-UNet-38478.5316.8487.3362.2384.6180.2593.1159.0788.8672.7652.1725.5585
  • LeViT-UNet-384はSynapseでDSC 78.53%、HD 16.84 mmを達成し、境界精度の面でいくつかのSOTA手法を上回る。
  • SynapseではLeViT-UNetのバリアントは臓器ごとに競争力のあるDSCを達成し、報告された手法の中でHDが最も良いのはLeViT-UNet-384(16.84 mm)である。
  • LeViT-UNet-384はACDCのRVとLVでそれぞれDSC 90.32、DSC 93.76を達成し、心臓分割の高い性能を示す。
  • トランスフォーマーチャンネル数を増やしトランスフォーマーブロックを導入するほど、非トランスフォーマーベースのベースラインよりDSCとHDの改善が一貫して現れる。
  • スキップ接続を増やすと一般に性能が向上し、特に大動脈や胆嚢など小さな臓器で顕著な改善が見られる。
  • 事前学習はより大きなトランスフォーマー・バックボーン(例: LeViT-UNet-384)で有用である一方、より小さなバージョンでは効果が混在する。

より良い研究を、今すぐ始めましょう

論文設計から論文執筆まで、研究時間を劇的に削減しましょう。

クレジットカード登録不要

このレビューはAIが作成し、人間の編集者が確認しました。