paper-with-me

Papers

Patcher: Patch Transformers with Mixture of Experts for Precise Medical Image Segmentation

2022-06-03 · Yanglan Ou, Ye Yuan, Xiaolei Huang, Stephen T. C. Wong, John Volpi, James Z. Wang, Kelvin Wong

We present a new encoder-decoder Vision Transformer architecture, Patcher, for medical image segmentation. Unlike standard Vision Transformers, it employs Patcher blocks that segment an image into large patches, each of which is further divided into small patches. Transformers are applied to the small patches within a large patch, which constrains the receptive field of each pixel. We intentionally make the large patches overlap to enhance intra-patch communication. The encoder employs a cascade of Patcher blocks with increasing receptive fields to extract features from local to global levels. This design allows Patcher to benefit from both the coarse-to-fine feature extraction common in CNNs and the superior spatial relationship modeling of Transformers. We also propose a new mixture-of-experts (MoE) based decoder, which treats the feature maps from the encoder as experts and selects a suitable set of expert features to predict the label for each pixel. The use of MoE enables better specializations of the expert features and reduces interference between them during inference. Extensive experiments demonstrate that Patcher outperforms state-of-the-art Transformer- and CNN-based approaches significantly on stroke lesion segmentation and polyp segmentation. Code for Patcher is released with publication to facilitate future research.

📄 PDF Abstract BibTeX arXiv:2206.01741

Code (1)

yanglanou/patcher 공식 구현 pytorch

Tasks

DecoderImage SegmentationLesion SegmentationMedical Image SegmentationMixture-of-ExpertsSegmentationSemantic Segmentation

Methods 이 논문이 사용한 방법론

Multi-Head Attention 설명 없음
Attention 설명 없음
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$…
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Adam 설명 없음
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…

Similar Papers 제목 키워드 기반

MoE Parallel Folding: Heterogeneous Parallelism Mappings for Efficient Large-Scale MoE Model Training with Megatron Core

2025-04-21 · Dennis Liu, Zijie Yan, Xin Yao, Tong Liu 외

Mixture of Experts (MoE) models enhance neural network scalability by dynamically selecting relevant experts per input token, enabling larger model sizes while maintaining manageable computation costs. However, efficient…

Mixture-of-Experts

Dynamic Tuning Towards Parameter and Inference Efficiency for ViT Adaptation

2024-03-18 · Wangbo Zhao, Jiasheng Tang, Yizeng Han, Yibing Song 외

Existing parameter-efficient fine-tuning (PEFT) methods have achieved significant success on vision transformers (ViTs) adaptation by improving parameter efficiency. However, the exploration of enhancing inference effici…

Mixture-of-Expertsparameter-efficient fine-tuningSemantic SegmentationVideo Recognition

The Concept of the Deep Learning-Based System "Artificial Dispatcher" to Power System Control and Dispatch

2018-05-07 · Nikita Tomin, Victor Kurbatsky, Michael Negnevitsky

Year by year control of normal and emergency conditions of up-to-date power systems becomes an increasingly complicated problem. With the increasing complexity the existing control system of power system conditions which…

Defending Against Malicious Finetuning by Scaling Train-time Adversarial Attacks

2026-06-06 · Haoming Wen, Shi Chen, Qingyu Shi, Siyuan Liu 외 arxiv

Current open-weight large language models (LLMs) are prone to malicious finetuning attacks, which could compromise the safety alignment of LLMs with only a few steps of supervised finetuning (SFT) on poisoned datasets. E…

Scalable Training of Mixture-of-Experts Models with Megatron Core

2026-03-08 · Zijie Yan, Hongxiao Bai, Xin Yao, Dennis Liu 외 arxiv

Scaling Mixture-of-Experts (MoE) training introduces systems challenges absent in dense models. Because each token activates only a subset of experts, this sparsity allows total parameters to grow much faster than per-to…