Table of Contents
Fetching ...

Implantable Adaptive Cells: A Novel Enhancement for Pre-Trained U-Nets in Medical Image Segmentation

Emil Benedykciuk, Marcin Denkowski, Grzegorz Wójcik

TL;DR

The paper addresses the challenge of upgrading pre-trained medical image segmentation models without full retraining by introducing Implantable Adaptive Cells (IAC) that are embedded into U-Net skip connections. Using a differentiable NAS framework inspired by PC-DARTS, the authors learn compact DAG modules that enhance feature fusion while keeping encoder–decoder weights frozen, then discretize and re-train with the new cells. Experiments on four datasets (ACDC, BraTS, KiTS, AMOS) across multiple backbones show consistent Dice score improvements, with average gains around 6.3 percentage points and up to 11 points in some cases, while reducing overall computational cost compared to full NAS. The findings suggest that targeted NAS within skip connections can effectively refine pre-trained architectures and potentially generalize to other models and modalities, offering a practical path for model enhancement in data- and resource-constrained clinical settings.

Abstract

This paper introduces a novel approach to enhance the performance of pre-trained neural networks in medical image segmentation using gradient-based Neural Architecture Search (NAS) methods. We present the concept of Implantable Adaptive Cell (IAC), small modules identified through Partially-Connected DARTS based approach, designed to be injected into the skip connections of an existing and already trained U-shaped model. Unlike traditional NAS methods, our approach refines existing architectures without full retraining. Experiments on four medical datasets with MRI and CT images show consistent accuracy improvements on various U-Net configurations, with segmentation accuracy gain by approximately 5 percentage points across all validation datasets, with improvements reaching up to 11\%pt in the best-performing cases. The findings of this study not only offer a cost-effective alternative to the complete overhaul of complex models for performance upgrades but also indicate the potential applicability of our method to other architectures and problem domains.

Implantable Adaptive Cells: A Novel Enhancement for Pre-Trained U-Nets in Medical Image Segmentation

TL;DR

The paper addresses the challenge of upgrading pre-trained medical image segmentation models without full retraining by introducing Implantable Adaptive Cells (IAC) that are embedded into U-Net skip connections. Using a differentiable NAS framework inspired by PC-DARTS, the authors learn compact DAG modules that enhance feature fusion while keeping encoder–decoder weights frozen, then discretize and re-train with the new cells. Experiments on four datasets (ACDC, BraTS, KiTS, AMOS) across multiple backbones show consistent Dice score improvements, with average gains around 6.3 percentage points and up to 11 points in some cases, while reducing overall computational cost compared to full NAS. The findings suggest that targeted NAS within skip connections can effectively refine pre-trained architectures and potentially generalize to other models and modalities, offering a practical path for model enhancement in data- and resource-constrained clinical settings.

Abstract

This paper introduces a novel approach to enhance the performance of pre-trained neural networks in medical image segmentation using gradient-based Neural Architecture Search (NAS) methods. We present the concept of Implantable Adaptive Cell (IAC), small modules identified through Partially-Connected DARTS based approach, designed to be injected into the skip connections of an existing and already trained U-shaped model. Unlike traditional NAS methods, our approach refines existing architectures without full retraining. Experiments on four medical datasets with MRI and CT images show consistent accuracy improvements on various U-Net configurations, with segmentation accuracy gain by approximately 5 percentage points across all validation datasets, with improvements reaching up to 11\%pt in the best-performing cases. The findings of this study not only offer a cost-effective alternative to the complete overhaul of complex models for performance upgrades but also indicate the potential applicability of our method to other architectures and problem domains.
Paper Structure (22 sections, 11 equations, 6 figures, 6 tables, 3 algorithms)

This paper contains 22 sections, 11 equations, 6 figures, 6 tables, 3 algorithms.

Figures (6)

  • Figure 1: Diagram of the U-Net with Implantable Adaptive Cells (IAC) integration. It is worth noting that the BACKBONE is intentionally varied. Adaptive OP varies by stage: concat (Stage I), continuous IAC (Stage II), discrete IAC (Stage III). Detailed diagram of IAC is shown in Fig. \ref{['fig:cell']}.
  • Figure 2: IAC diagram: input1 are coarse features procured via skip connections from the encoder, and input0 are upsampled decoder features. Search explores node connections and operations. A visual representation of the node block (yellow) is shown in Fig. \ref{['fig:pc_darts']}.
  • Figure 3: A visual representation of the process of searching for node connections that minimize the uncertainty provoked by sampling (refer to Fig. \ref{['fig:alphas_beta']}).
  • Figure 4: A visual representation of a cell architecture search by continuously relaxing the search space by placing a mixture of candidate operations on each edge.
  • Figure 5: The base U-Net architectures were trained utilizing train_dt and val_dt sets, effectively serving as reference points in our studies. These datasets were also used in the training of the networks to which the IAC cell had been integrated. Two equally numbered sets, train_search_dt and val_search_dt, exclusively derived from the train_dt set, were used in uncovering the adaptive cell’s architecture.
  • ...and 1 more figures