Abstract

Medical image segmentation models require both high accuracy and lightweight design to accommodate real-world medical applications. The deployment of these models on resource-limited medical platforms remains a significant challenge due to their high computational and parameter requirements. Existing pruning methods for model compression mostly overlook the intrinsic connections and similarity between the internal structures of complex deep neural networks. As a result, compressed models may not effectively retain the basic features of the pretrained network. To solve this problem, we propose a hierarchical clustering compression method for medical image segmentation models (MIS-HCC). This approach employs hierarchical clustering to partition channels and fuse their parameters efficiently. Specifically, it leverages the Wasserstein distance to represent similarity of channels within layers of pre-trained network, forming a similarity matrix that guides the clustering process. Channels within each cluster are then fused to produce a compressed network. Experimental results on three medical image datasets application demonstrate that MIS-HCC outperforms the state-of-the-art methods in both accuracy and compression efficiency, offering an effective solution for deploying medical image segmentation models on resource-limited medical platforms.

1 Introduction↩︎

In recent years, the deployment of complex deep neural networks have a lot of applications [1][10] particularly in resource-constrained environments, which has driven extensive research into model efficiency and compression techniques, such as network pruning [11], [12], quantization, parameter-efficient tuning [13] and knowledge distillation [14][20]. Building upon these broad advances in efficient AI, optimizing large-scale models for specific clinical domains remains a critical challenge.

Although deep learning models, such as U-Net [21] and Transformer-based architectures [22][29], have achieved remarkable success in automated medical image segmentation [30], their massive parameter counts and heavy computational burdens severely hinder the deployment on platforms such as mobile health devices and edge computing nodes. To alleviate this, structured network pruning [31], [32] is widely adopted to remove entire structural units, maintaining compatibility with general-purpose hardware.

However, significant gaps persist in applying structured pruning to medical multimedia analysis. First, general approaches like HRank [33] and CHEX [34] evaluate network units in isolation, overlooking intrinsic inter-channel correlations. In medical imaging, anatomical structures induce high feature similarity, and neglecting these relationships risks discarding essential fine-grained semantics. Second, existing medical-specific pruning strategies [35], [36] typically prioritize the direct elimination of “redundant” filters. Because redundancy often contributes to model robustness against imaging noise, there is a critical need for frameworks that integrate representation similarity [37] to fuse correlated features, rather than simply deleting them, to preserve collective representational power during compression.

To address these challenges, we propose a novel Hierarchical Clustering Compression method (MIS-HCC) for efficient medical image segmentation. Instead of a binary keep-or-drop decision, MIS-HCC leverages the Wasserstein distance to rigorously quantify the similarity between channel distributions. We then employ hierarchical clustering to group redundant channels and fuse their parameters. This approach—applicable to both CNN and Transformer backbones for 2D and 3D data—maintains the original network topology for seamless hardware acceleration while significantly reducing model size.

The main contributions of this paper are summarized as follows:

  • We propose MIS-HCC, a structured compression framework that introduces hierarchical clustering to medical multimedia model pruning, replacing simple filter removal with intelligent parameter fusion.

  • We utilize the Wasserstein distance to construct a robust channel similarity matrix, explicitly modeling inter-channel correlations to preserve critical visual features during compression.

  • Extensive experiments on multiple medical segmentation benchmarks demonstrate that MIS-HCC achieves superior compression-accuracy trade-offs compared to state-of-the-art pruning methods.

2 Related Works↩︎

2.1 Medical Image Segmentation↩︎

Deep learning has been applied across various fields [38][54]. While deep learning architectures, including CNNs (e.g., U-Net [21]) and Transformers (e.g., TransUNet [22]), have become cornerstones of medical image segmentation, their clinical deployment is often bottlenecked by computational inefficiency. Advanced variants incur substantial parameter overhead; for instance, U-Net++ [55] increases the parameter count by 30% over the original U-Net, demanding extensive GPU memory for high-resolution volumetric data. These heavy computational burdens preclude their direct application in resource-limited clinical environments, motivating the need for efficient model compression.

2.2 Network Pruning↩︎

Network pruning mitigates computational overhead by removing redundant structures [56][58]. While unstructured pruning sparsifies weights, structured pruning eliminates entire filters or channels, ensuring compatibility with general-purpose hardware. Prominent methods such as HRank [33] and CHEX [34] rely on proxy metrics to identify and discard less important channels. In the medical domain, tailored approaches like Sauron U-Net [35] have been proposed to reduce parameters while preserving critical anatomical features. Furthermore, coupling pruning with knowledge distillation has proven highly effective in maintaining robust representational capacity under aggressive compression Your_Paper_Citation_Here?. Despite these advances, most existing techniques treat network channels independently. By prioritizing the sheer deletion of “redundant” channels, they fail to exploit the intrinsic structural similarities highly prevalent in medical imagery.

2.3 Representation Similarity↩︎

Analyzing representation similarity is crucial for identifying redundant structures and guiding intelligent network compression [37]. Traditional metric approaches often struggle to evaluate meaningful similarities within high-dimensional feature spaces. However, recent advances in neural clustering [59] suggest that feature extraction can be viewed as selecting and fusing representatives from the underlying data distribution. Motivated by this perspective, rather than evaluating channels in isolation, our study leverages representation similarity to guide hierarchical clustering, selectively fusing functionally overlapping channels to achieve context-aware compression for medical image segmentation.

3 Method↩︎

Figure 1: The overview framework of our proposed method.

In this study, as shown in Fig. 1, we propose a novel model compression method, named MIS-HCC, to enhance the efficiency of medical image segmentation. Our method follows three steps: First, we employ the Wasserstein distance to quantitatively measure representation similarity between input channels in a pre-trained network layer. Next, hierarchical clustering is applied on the derived similarity matrix to partition channels into clusters. Finally, channels within each cluster are averaged and fused to create a compact network, effectively reducing model size while preserving key features.

3.1 Representation Similarity↩︎

Modern CNN or Transformer blocks often contain redundant input channels that encode highly overlapping features. A principled pairwise similarity can expose such redundancy and guide structured pruning without task-specific heuristics. In order to compress the network, we aim to construct a pairwise channel similarity matrix that is applicable to layers with generic weight shapes, robust to scale, and suitable for downstream clustering.

Specifically, given a pre-trained network \(G\) with \(L\) layers \(\{l_1,\dots,l_L\}\), for any layer \(l_i\), let \(W_i\) denote the weight tensor with generic shape \(W_i \in \mathbb{R}^{\,N_{\mathrm{in}} \times N_{\mathrm{out}} \times *}\), where \(*\) denotes all remaining dimensions beyond input and output channels. This covers 1D/2D/3D convolutions and linear layers, and thus is suitable for both CNN and Transformers. Considering input-channel compression, we flatten all dimensions except the input-channel dimension to obtain the channel feature matrix \(M_1 \in \mathbb{R}^{\,N_{\mathrm{in}} \times D_i}\) where \(D_i\) is the product of all non-input-channel dimensions of \(W_i\). Let \(v_p\) and \(v_q\) denote the \(p\)-th and \(q\)-th channel in the channel feature matrix \(M_1\), we compute the Wasserstein distance for every channel pair \((p,q)\), where \(p, q \in [0, 1, 2, ..., N_{in}]\), forming the symmetric channel-pair distance matrix \([M_{\mathrm{dist}}]_{p,q} \;=\; W(v_p, v_q)\) as below: \[W(v_p, v_q) \;=\; \inf_{\gamma \in \Gamma(\mu_p, \mu_q)} \int_{X \times X} d(x,y)\, d\gamma(x,y), \label{eq:wd}\tag{1}\] where \(\mu_p,\mu_q\) are distributions induced by \(v_p,v_q\), \(X\) is the metric space, \(d(\cdot,\cdot)\) is a ground distance, and \(\Gamma(\mu_p,\mu_q)\) is the set of couplings with marginals \(\mu_p,\mu_q\). We convert distances to similarities by normalizing \(M_{\mathrm{dist}}\) to \([0,1]\) and defining the similarity matrix \(M_2 \in \mathbb{R}^{\,N_{\mathrm{in}} \times N_{\mathrm{in}}}\) as below: \[M_2 \;=\; \mathbf{1} - \widehat{M}_{\mathrm{dist}}, \quad M_2 \in \mathbb{R}^{\,N_{\mathrm{in}} \times N_{\mathrm{in}}},\] where larger \(M_2[p,q]\) indicates higher similarity.

Unlike cosine measures on raw vectors, the Wasserstein metric captures distributional discrepancies and is less sensitive to local mass shifts, making it suitable for channel features aggregated over spatial/temporal/kernel dimensions. Note that the same compression method is applied to the output channel dimension as well in practice.

3.2 Hierarchical Clustering↩︎

In a complex neural network, channels are not isolated from each other, and their internal relations and interdependence must be taken into account when simplifying the model, as pruning them independently risks removing complementary features. Thus, we propose to utilize hierarchical clustering to partition the \(N_{\mathrm{in}}\) input channels into \(K\leq N_{\mathrm{in}}\) clusters, where \(K\) is chosen by a desired compression ratio or a dendrogram cut threshold.

We perform agglomerative hierarchical clustering with Average Linkage on the Wasserstein-based affinities. We use the similarity matrix \(M_2\) to initialize hierarchical clustering, where each channel initially forms its own cluster. We then use Average Linkage algorithm to compute inter-cluster distances: \[d(U,V) \;=\; \frac{1}{|U|\,|V|}\sum_{i \in U}\sum_{j \in V} d(i,j),\] where \(U,V\) are two clusters and \(d(i,j)\) is taken from \(M_2\).

Average Linkage balances both intra-cluster and inter-cluster distances, which leads to stable, consistent partitions of channels. Hierarchical clustering returns labels \(\{1,\dots,K\}\) and index sets \(\{I_c\}_{c=1}^K\) with \(I_c \subset \{1,\dots,N_{\mathrm{in}}\}\), ready for parameter fusion.

3.3 Parameter Fusion↩︎

If channels within a cluster are near-duplicates, replacing them by a single prototype preserves salient features while cutting parameters and FLOPs, without retraining or specialized inference kernels. Thus, we construct a fused weight tensor with \(K\) input channels by averaging channels within each cluster. For cluster \(c \in \{1,\dots,K\}\) with index set \(I_c\), we fuse weights by arithmetic averaging along the input-channel dimension: \[W^{(i)}_{\mathrm{fused}}[c,\,\cdot] \;=\; \frac{1}{|I_c|}\sum_{p \in I_c} W_i[p,\,\cdot], \label{eq:fuse}\tag{2}\] where \(W^{(i)}_{\mathrm{fused}}\) replaces the original input-channel dimension with size \(K\), and “\(\cdot\)” denotes all remaining indices.

The simple and naive fusion technique ensures closed-form, training-free compression, and is compatible with both convolutional layers and linear layers. For a layer with original parameters proportional to \(N_{\mathrm{in}}\), the fused layer uses \(K\) input channels, yielding a parameter and FLOP reduction factor of \(K/N_{\mathrm{in}}\). Stacking across layers produces the compressed model \(G'\) while retaining key representational characteristics.

4 Experiment↩︎

4.1 Experimental Settings↩︎

4.1.1 Backbones and Datasets↩︎

We evaluate our method on both 2D and 3D segmentation, with CNN backbones and Transformer backbones, respectively. For 2D segmentation, we conduct experiments on three publicly available datasets, using U-Net [21] and U-Net++ [55] as the backbone architectures. The first dataset is the Breast Ultrasound Images Dataset (BUSI) [60], which consists of 437 breast ultrasound images collected from women aged between 25 and 75 years. The second dataset is the Data Science Bowl (DSB) [61], containing 670 images of segmented nuclei from different cell types obtained under diverse experimental conditions. The third dataset is the International Skin Imaging Collaboration (ISIC) [62], which includes 2,594 dermoscopic images of skin lesions collected from multiple medical institutions worldwide. To ensure consistency across experiments, all images are uniformly cropped to a resolution of \(256 \times 256\) pixels. Each dataset is randomly divided into training and testing sets with an 80%–20% split.

For 3D segmentation, we conduct experiments on the MICCAI FLARE 2021 [63] dataset using the MedSAM2 [64] backbone. The FLARE 2021 challenge dataset consists of 511 fully annotated abdominal CT scans collected from 11 different medical centers. It provides segmentation masks for four abdominal organs: liver, kidney, spleen, and pancreas. For the backbone network, we adopt MedSAM2, a recently proposed promptable segmentation foundation model for 3D medical images and videos. MedSAM2 is developed by fine-tuning the Segment Anything Model 2 on a large-scale medical dataset comprising over 455,000 3D image–mask pairs and 76,000 frames across diverse modalities. In our implementation, the FLARE 2021 CT volumes are resampled to a consistent voxel spacing and cropped around the target organs’ bounding regions. The training and testing splits follow the official challenge protocol. For MedSAM2, we utilize bounding-box prompts on central slices with bidirectional propagation to generate volumetric predictions. For performance evaluation, we adopt Dice coefficient and Intersection over Union (IoU) metrics to assess both 2D and 3D segmentation performance.

4.1.2 Configurations↩︎

All experiments are implemented in the PyTorch (2.1.2) deep learning framework. For 2D segmentation tasks, training is conducted on a single NVIDIA RTX 4090 GPU, with the batch size set to 100. Each model is trained for 200 epochs using the Adam optimizer with an initial learning rate of 0.001 and a weight decay of 0.0001. The learning rate is scheduled following a cosine annealing strategy, with the minimum learning rate set to 1e-5. For 3D segmentation, due to GPU memory limitations, the batch size is reduced to 2 and the initial learning rate is adjusted to 1e-4, while all other training configurations remain consistent with the 2D setting.

To provide a comprehensive comparison, we evaluate our method against several representative pruning approaches. RP denotes random pruning, which serves as a model pruning baseline. PFEC [65] prunes filters with small weight magnitudes and requires fine-tuning to recover accuracy. HRank [33] identifies redundant filters based on the rank of feature maps, effectively reducing channel redundancy. CHEX [34] adopts a prune-and-regrow strategy during training, enabling channel exploration without the need for pretrained models. TPP [66] preserves the trainability of pruned networks by regularizing gradient flow during pruning, ensuring stable convergence after compression. These baselines cover both post-training and training-aware pruning paradigms, providing a diverse benchmark for evaluating our proposed method. Note that since CHEX [34] requires retraining during model pruning, we do not evaluate it on the 3D segmentation task with MedSAM2 [64] backbone.

Figure 2: The visual comparison of our proposed MIS-HCC method with other methods on 2D and 3D segmentation, respectively.
Table 1: Comparison with the state-of-the-art methods on three datasets (BUSI, DSB and ISIC) with the pruning rate of 87.5%.
Methods BUSI DSB ISIC
Dice Dice↓(%) IoU IoU↓(%) Dice Dice↓(%) IoU IoU↓(%) Dice Dice↓(%) IoU IoU↓(%)
U-Net 0.7806 - 0.7035 - 0.9196 - 0.8584 - 0.9137 - 0.8551 -
RP 0.7568 -3.05% 0.6749 -4.07% 0.9152 -0.48% 0.8491 -1.08% 0.9011 -1.38% 0.8343 -2.43%
PFEC[65] 0.7674 -1.69% 0.6898 -1.95% 0.9191 -0.05% 0.8524 -0.70% 09098 -0.43% 0.8470 -0.95%
HRank[33] 0.7692 -1.46% 0.6924 -1.58% 0.9188 -0.09% 0.8515 -0.80% 0.9092 -0.49% 0.8462 -1.04%
CHEX[34] 0.7738 -0.87% 0.6962 -1.04% 0.9206 0.11% 0.8546 -0.44% 0.9124 -0.14% 0.8513 -0.44%
TPP[66] 0.7781 -0.32% 0.6989 -0.65% 0.9196 0.00% 0.8559 -0.29% 0.9106 -0.34% 0.8487 -0.75%
Ours 0.7841 +0.45% 0.7072 +0.53% 0.9226 +0.33% 0.8603 +0.22% 0.9188 +0.56% 0.8588 +0.43%
U-Net++ 0.7977 - 0.7081 - 0.9210 - 0.8605 - 0.9196 - 0.8633 -
RP 0.7778 -2.49% 0.6962 -1.68% 0.9201 -0.10% 0.8564 -0.48% 0.9134 -0.67% 0.8303 -3.82%
PFEC 0.7882 -1.19% 0.6988 -1.31% 0.9189 -0.23% 0.8516 -1.03% 0.9198 0.02% 0.8427 -2.39%
HRank 0.7899 -0.98% 0.6992 -1.26% 0.9211 0.01% 0.8542 -0.73% 0.9202 0.07% 0.8487 -1.69%
CHEX 0.7966 -0.14% 0.7043 -0.66% 0.9207 0.07% 0.8550 -0.64% 0.9211 1.16% 0.8519 -1.32%
TPP 0.7942 -0.44% 0.7006 -0.66% 0.9223 0.14% 0.8564 -0.48% 0.9214 +0.20% 0.8579 +0.14%
Ours 0.8015 +0.48% 0.7104 +0.32% 0.9233 +0.25% 0.8616 +0.13% 0.9187 -0.10% 0.8626 -0.08%

4.2 Results and Analysis↩︎

4.2.1 Segmentation Results↩︎

4.2.1.1 2D Segmentation Results

Table 1 presents the performance comparison of our proposed MIS-HCC and other state-of-the-art methods on the BUSI, DSB, and ISIC datasets. We take U-Net and U-Net++ as the baseline networks and set a uniform pruning rate of 87.5%. To ensure a fair comparison, all methods were reproduced in the same experimental environment. Overall, MIS-HCC outperforms all other methods across the three datasets and maintains comparable performance to the baseline networks even after model compression. In contrast, other pruning methods lead to more evident accuracy reductions. For the U-Net model, before compression, the Dice/IoU scores are 0.7806 and 0.7035 on BUSI, 0.9196 and 0.8584 on DSB, and 0.9137 and 0.8551 on ISIC, respectively. After compression, random pruning (RP) exhibits the most significant relative decrease in accuracy, whereas TPP [66] shows a comparatively minor reduction. Our MIS-HCC achieves the best performance among all methods, with Dice/IoU scores of 0.7841 and 0.7072 on BUSI, 0.9226 and 0.8603 on DSB, and 0.9188 and 0.8588 on ISIC. On the BUSI dataset, MIS-HCC outperforms TPP (Dice = 0.7841 vs. 0.7781; IoU = 0.7072 vs. 0.6989). On DSB, it also achieves higher scores (Dice = 0.9226 vs. 0.9196; IoU = 0.8603 vs. 0.8559). On ISIC, MIS-HCC surpasses CHEX, with Dice = 0.9188 vs. 0.9124 and IoU = 0.8588 vs. 0.8513. For the U-Net++ model, the performance comparison across all methods shows similar trends. MIS-HCC again obtains the highest Dice and IoU scores, with performance changes comparable to those seen in U-Net. The only exception occurs on the ISIC dataset, where the improvements are slightly less pronounced compared to other baselines. We attribute this to the relatively large scale of the ISIC dataset. For example, the relative performance changes on Dice and IoU are 0.45% and 0.53% for our method, compared with 0.48% and 0.32%, and 0.33% and 0.22% observed in other methods (vs. 0.25% and 0.13%). These results demonstrate that combining similarity representation with hierarchical clustering can effectively improve network compression performance by better exploiting and fusing similarities within internal structures.

Table 2: Comparison with the state-of-the-art methods on FLARE21 with the pruning rate of 87.5%.
Methods Dice Dice↓(%) IoU IoU↓(%)
MedSAM2 0.8483 - 0.7807 -
RP 0.7613 -10.35% 0.6737 -13.70%
PFEC[65] 0.8154 -3.87% 0.7394 -5.29%
HRank[33] 0.7893 -6.95% 0.7115 -8.86%
TPP[66] 0.8346 -1.61% 0.7622 -2.37%
Ours 0.8471 -0.14% 0.7789 -0.23%

4.2.1.2 3D Segmentation Results

Table 2 demonstrates the performance of different pruning approaches on FLARE21, with MedSAM2 backbone. We adopt the same pruning setting as 2D segmentation, setting the pruning rate at 87.5%. Before compression, MedSAM2 achieves Dice and IoU scores of 0.8483 and 0.7807, respectively, providing a strong baseline. After pruning, most existing approaches suffer from considerable performance degradation. Specifically, RP leads to the most severe accuracy drop, with Dice/IoU reductions of 10.35% and 13.70%, respectively. HRank also shows notable performance loss, while PFEC alleviates the decline but still exhibits a Dice decrease of 3.87%. Among prior methods, TPP demonstrates relatively stable performance, reducing Dice by only 1.61% and IoU by 2.37%. However, our proposed MIS-HCC significantly outperforms all other pruning strategies, achieving Dice and IoU scores of 0.8471 and 0.7789, which are remarkably close to the uncompressed MedSAM2 (only 0.14% and 0.23% reduction, respectively). This observation confirms that MIS-HCC is particularly effective for large-scale 3D segmentation tasks, where preserving feature diversity is crucial. Taken together with the 2D segmentation results, these findings highlight the robustness and generalizability of MIS-HCC across different architectures and modalities. By explicitly modeling channel similarity and performing hierarchical clustering before fusion, MIS-HCC achieves superior compression efficiency while maintaining nearly lossless segmentation accuracy.

Table 3: The compression performance comparison of MIS-HCC and TPP on the BUSI dataset with different pruning rates.
Pruning Rate Method Dice (%) FLOPs PR Params PR
50% TTP 0.7911 74.68% 75.09%
Ours 0.7916 74.56% 74.98%
1-5 TTP 0.7803 93.31% 93.80%
Ours 0.7855 93.23% 93.72%
1-5 TTP 0.7781 97.36% 97.51%
Ours 0.7841 98.28% 98.43%

4.2.2 Results on Compression Performance↩︎

Table 3 demonstrates the Dice score, FLOPs, and parameter reductions for our proposed MIS-HCC and the state-of-the-art TPP method on the BUSI dataset. Both methods were applied to prune the original network U-Net, and with pruning rates set at 50%, 75%, and 87.5%. Overall, increasing the pruning rate leads to a certain degree of accuracy loss. Under all three pruning rates, MIS-HCC outperforms the TPP method in accuracy (0.7916 vs. 0.7911, 0.7855 vs. 0.7803, and 0.7841 vs. 0.7781). This is attributed to MIS-HCC’s ability to better preserve the original network features by fusing similar channels through similarity calculations. At pruning rates of 50% and 75%, compared to MIS-HCC, the TPP had higher reduction in FLOPs and parameters. However, at pruning rates of 87.5%, the MIS-HCC outperforms TTP in both FLOPS and parameter reductions (98.28% vs. 97.36% and 98.43% vs. 97.51%). These results indicate that our MIS-HCC method not only achieves better accuracy but also delivers superior overall performance in model compression.

4.3 Ablation Studies↩︎

In this section, we evaluate the performance of MIS-HCC method using different similarity calculation and clustering methods on the BUSI dataset, with U-Net as the original network. The U-Net_Wd means using Wasserstein distances (ticking), but with k-means clustering instead of Hierarchical Clustering. The U-Net_HC means using Hierarchical Clustering, but replaces Wasserstein distance with Cosine similarity.

Table 4: Ablation study of our proposed modules on the BUSI dataset.
Method Similarity Cluster Dice\(\uparrow\) IoU\(\uparrow\)
Unet-RP 0.7806 0.7035
U-Net_Wd 0.7826 0.7046
U-Net_HC 0.7835 0.7051
Ours 0.7841 0.7072

As shown in Table 4, The performance of the original network improves when using Wasserstein distances alone (0.7826/0.7046 vs. 0.7806/0.7035). The improvement is even more significant when Hierarchical Clustering is applied on its own (0.7835/0.7051 vs. 0.7806/0.7035). The best performance is achieved when both Wasserstein distance and Hierarchical Clustering are combined in MIS-HCC. These results prove the effectiveness of our proposed entire pipeline of MIS-HCC in enhancing network performance.

4.4 Visual Results↩︎

Fig. 2 presents qualitative comparisons of different pruning strategies on both 2D and 3D medical image segmentation tasks. For the 2D datasets, compared with U-Net baseline, other pruning approaches such as RP, PFEC, HRank, CHEX, and TPP, exhibit issues of blurred lesion edges or redundant regions. In contrast, our proposed method provides segmentation maps that are more consistent with the ground truth, with sharper lesion contours and better preservation of fine details. Similarly, in the 3D medical segmentation task, compared with MedSAM2 baseline, compared pruning methods tend to under-segment small structures or produce significant false positives. Our method, however, achieves superior visual alignment with the ground truth, maintaining structural integrity and edge precision even under high pruning rates. These results demonstrate that our approach can effectively balance model compression and segmentation accuracy in both 2D and 3D scenarios, validating the robustness and generalizability of the proposed pruning framework.

5 Conclusion↩︎

In this study, we proposed a novel model compression algorithm for semantic segmentation of medical images, specifically designed for deployment on resource-constrained medical platforms. By utilizing Wasserstein distance to measure the representational similarity between channels in network layers and applying Hierarchical Clustering to divided the channels into different clusters, MIS-HCC effectively reduces model parameters and improved model efficiency. Experimental results on medical image benchmark datasets demonstrate that our method achieves excellent performance, making it a promising solution for the practical deployment and application of medical image segmentation models. In future work, we will extend these principles to other real-world scenarios, further improving model efficiency and applicability.

References↩︎

[1]
W. Zhu, Y. Zhang, X. Jin, W. Zeng, and L. Zhang, “Knowledge regularized negative feature tuning of vision-language models for out-of-distribution detection,” in MM, 2025.
[2]
T. He et al., “Lifelong scene graph generation,” Pattern Recognition, 2026.
[3]
P. Zhang et al., “Boosting learning efficiency in few-shot tasks with layer-adaptive pid control,” IEEE Transactions on Pattern Analysis and Machine Intelligence, 2026.
[4]
J. Zhang, Z. Li, J. Lin, and G. Lu, “Adaptive event stream slicing for open-vocabulary event-based object detection via vision-language knowledge distillation,” arXiv preprint arXiv:2510.00681, 2025.
[5]
J. Zhang, P. K. Reddy, X.-I. Wong, Y. Aloimonos, and G. Lu, “Embodiment: Self-supervised depth estimation based on camera models,” in IROS, 2024.
[6]
J. Zhang and G. Lu, “Vision-language embodiment for monocular depth estimation,” in CVPR, 2025.
[7]
J. Zhang, N. Xu, H. Zhang, and G. Lu, “Depth estimation based on 3D gaussian splatting siamese defocus,” in ICRA, 2025.
[8]
F. Zhang, Z. Gu, and H. Wang, “Decoding with structured awareness: Integrating directional, frequency-spatial, and structural attention for medical image segmentation,” in AAAI, 2026.
[9]
H. Wang and F. Zhang, “Computing nodes for plane data points by constructing cubic polynomial with constraints,” Computer Aided Geometric Design, 2024.
[10]
C. Xiao, T. Xu, S. Ma, Y. Jiang, H. Gao, and Y. Wu, “Reversible primitive–composition alignment for continual vision–language learning,” in ICLR, 2026.
[11]
J. Im Choi, Q. Lan, and Q. Tian, “Boosting deep detector efficiency and robustness through detection discriminant reorganization and compression,” Neural Networks, p. 109271, 2026.
[12]
Q. Lan, J. I. Choi, and Q. Tian, “Visual detector compression via location-aware discriminant analysis,” in Proceedings of the IEEE/CVF winter conference on applications of computer vision, 2026, pp. 3546–3555.
[13]
R. Yao et al., “MAP: Parameter-efficient tuning for referring expression comprehension via multi-modal adaptive positional encoding,” in Proceedings of the 33rd ACM international conference on multimedia, 2025, pp. 2264–2273.
[14]
Y. Li et al., “Frequency-aligned knowledge distillation for lightweight spatiotemporal forecasting,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 7262–7272.
[15]
Y. Li et al., “A comprehensive survey of interaction techniques in 3D scene generation,” Authorea Preprints, 2026.
[16]
Y. Li et al., “Sepprune: Structured pruning for efficient deep speech separation,” in Proceedings of the AAAI conference on artificial intelligence, 2026, vol. 40, pp. 31861–31869.
[17]
M. Fan et al., “Detail consistent stage-wise distillation for efficient 3D MRI segmentation,” arXiv preprint arXiv:2605.26382, 2026.
[18]
Z. Ding et al., “Displacement preserving relational distillation for robust medical segmentation,” arXiv preprint arXiv:2607.04599, 2026.
[19]
Q. Lan and Q. Tian, “ACAM-KD: Adaptive and cooperative attention masking for knowledge distillation,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 3957–3966.
[20]
Q. Lan and Q. Tian, “Clockdistill: Consistent location and context aware knowledge distillation for detrs,” in Proceedings of the IEEE/CVF winter conference on applications of computer vision, 2026, pp. 7188–7197.
[21]
O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolutional networks for biomedical image segmentation,” in MICCAI, 2015.
[22]
J. Chen, Y. Lu, et al., “Transunet: Transformers make strong encoders for medical image segmentation,” arXiv preprint arXiv:2102.04306, 2021.
[23]
A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, and et al Zhai Xiaohua, “An image is worth 16x16 words: Transformers for image recognition at scale,” arXiv preprint arXiv:2010.11929, 2020.
[24]
S. Meng and W. Shi, “Fusing structure and appearance features in facial expression recognition transformer,” in ICASSP, 2024.
[25]
Z. Xu, X. Zhang, R. Li, Z. Tang, Q. Huang, and J. Zhang, “Fakeshield: Explainable image forgery detection and localization via multi-modal large language models,” in ICLR, 2025.
[26]
Z. Xu, X. Zhang, Q. Huang, X. Zhou, and J. Zhang, “AvatarShield: Visual reinforcement learning for human-centric synthetic video detection,” arXiv preprint arXiv:2505.15173, 2025.
[27]
Y. Xie et al., “Symmetry-aware causal inference for robust neural PDE solvers,” in ICMR, 2026.
[28]
W. Feng, C. Yang, et al., “Mpq-dmv2: Flexible residual mixed precision quantization for low-bit diffusion models with temporal distillation,” IEEE TPAMI, 2026.
[29]
H. Wu et al., “RoboAlign-R1: Distilled multimodal reward alignment for robot video world models,” arXiv preprint arXiv:2605.03821, 2026.
[30]
Y. Jia, C. Kaul, T. Lawton, R. Murray-Smith, and I. Habli, “Prediction of weaning from mechanical ventilation using convolutional neural networks,” Artificial intelligence in medicine, 2021.
[31]
Y. He, P. Liu, Z. Wang, Z. Hu, and Y. Yang, “Filter pruning via geometric median for deep convolutional neural networks acceleration,” in CVPR, 2019.
[32]
Z. Liu, J. Li, Z. Shen, G. Huang, S. Yan, and C. Zhang, “Learning efficient convolutional networks through network slimming,” in CVPR, 2017.
[33]
M. Lin et al., “Hrank: Filter pruning using high-rank feature map,” in CVPR, 2020.
[34]
Z. Hou et al., “Chex: Channel exploration for cnn model compression,” in CVPR, 2022.
[35]
J. M. Valverde, A. Shatillo, and J. Tohka, “Sauron u-net: Simple automated redundancy elimination in medical image segmentation via filter pruning,” Neurocomputing, vol. 594, p. 127817, 2024.
[36]
X. Mei, Z. Zhu, M. Sun, and Y. Ma, “Automatic channel pruning of u-net applied to retinal blood vessels segmentation,” in CCC, 2024.
[37]
S. Kornblith, M. Norouzi, H. Lee, and G. Hinton, “Similarity of neural network representations revisited,” in ICML.
[38]
K. Yang, J. Lu, and Y. Fu, “Training-free cross-modal alignment via anchor profiles with statistical significance testing,” in CVPR, 2026.
[39]
S. Tian, G. Chen, B. Li, J. Ma, and Z. Yu, “Curvature-adaptive consistency flow matching: Autonomous trajectory optimization via reinforcement learning.” 2026, [Online]. Available: https://arxiv.org/abs/2606.22394.
[40]
Z. Yu, S. Tian, and G. Chen, “Divergence of empirical neural tangent kernel in classification problems.” 2025, [Online]. Available: https://arxiv.org/abs/2504.11130.
[41]
S. Du et al., “Unsupervised hyperspectral image super-resolution via self-supervised modality decoupling,” International Journal of Computer Vision, 2026.
[42]
S. Du et al., “Pansharpening for thin-cloud contaminated remote sensing images: A unified framework and benchmark dataset,” in AAAI, 2026.
[43]
S. Du, Y. Bai, J. Ma, M. Liu, and Y. Li, “Frequency-decoupled learning for joint thin-cloud removal and pansharpening,” in ICASSP, 2026.
[44]
M. Liu et al., “IPS: In-prompt process supervision for short video content moderation.” 2026, [Online]. Available: https://arxiv.org/abs/2412.15251.
[45]
Z. Wang et al., “Reasoning-enhanced domain-adaptive pretraining of multimodal large language models for short video content governance,” in EMNLP: Industry track, 2025.
[46]
Y. Sun et al., “Audio-enhanced vision-language modeling with latent space broadening for high quality data expansion,” 2025.
[47]
G. Liang et al., “Render-in-the-loop: Vector graphics generation via visual self-feedback,” arXiv preprint arXiv:2604.20730, 2026.
[48]
G. Liang et al., “VAnim: Rendering-aware sparse state modeling for structure-preserving vector animation,” arXiv preprint arXiv:2605.01517, 2026.
[49]
G. Liang, J. Hu, X. Xing, J. Zhang, and Q. Yu, “Multi-object sketch animation with grouping and motion trajectory priors,” in MM, 2025.
[50]
S. Wu and J. Zhang, “Spatiotemporal multi-view continual dictionary learning with graph diffusion,” Knowledge-Based Systems, 2025.
[51]
Q. Ning, J. Zhang, et al., “Multi-resolution context augmentation and dual channel attention for 3D lane detection,” IEEE Internet of Things Journal, 2025.
[52]
J. Wu, J. Zhang, J. Zhu, et al., “Multi-scale convolution and dynamic task interaction detection head for efficient lightweight plum detection,” Food and Bioproducts Processing, 2025.
[53]
G. Lan et al., “MaPPO: Maximum a posteriori preference optimization with prior knowledge,” arXiv preprint arXiv:2507.21183, 2025.
[54]
W. Zhu, Y. Zhang, X. Jin, W. Zeng, and L. Zhang, “ANTS: Adaptive negative textual space shaping for OOD detection via test-time MLLM understanding and reasoning,” in CVPR, 2026.
[55]
Z. Zhou, M. M. Rahman Siddiquee, N. Tajbakhsh, and J. Liang, “Unet++: A nested u-net architecture for medical image segmentation,” in 4th international workshop, DLMIA 2018, and 8th international workshop, ML-CDS 2018, held in conjunction with MICCAI, 2018.
[56]
N. Xu, Y. Jiang, S. R. Dipta, and H. Zhang, “Learning how to use tools, not just when: Pattern-aware tool-integrated reasoning.” 2026, [Online]. Available: https://arxiv.org/abs/2509.23292.
[57]
H. Zhang, S. Yang, et al., “Find your optimal teacher: Personalized data synthesis via router-guided multi-teacher distillation.” 2026, [Online]. Available: https://arxiv.org/abs/2510.10925.
[58]
Y. Jiang, D. Li, and F. Ferraro, “DRP: Distilled reasoning pruning with skill-aware step decomposition for efficient large reasoning models.” 2026, [Online]. Available: https://arxiv.org/abs/2505.13975.
[59]
G. Chen, X. Li, Y. Yang, and W. Wang, “Neural clustering based visual representation learning,” in CVPR, 2024.
[60]
W. Al-Dhabyani, M. Gomaa, H. Khaled, and A. Fahmy, “Dataset of breast ultrasound images,” Data in brief, vol. 28, p. 104863, 2020.
[61]
J. C. Caicedo et al., “Nucleus segmentation across imaging experiments: The 2018 data science bowl,” Nature methods, vol. 16, no. 12, pp. 1247–1253, 2019.
[62]
N. Codella et al., “Skin lesion analysis toward melanoma detection 2018: A challenge hosted by the international skin imaging collaboration (isic),” arXiv preprint arXiv:1902.03368, 2019.
[63]
J. Ma et al., “Fast and low-GPU-memory abdomen CT organ segmentation: The flare challenge,” Medical Image Analysis, vol. 82, p. 102616, 2022.
[64]
J. Ma et al., “Medsam2: Segment anything in 3d medical images and videos,” arXiv preprint arXiv:2504.03600, 2025.
[65]
H. Li, A. Kadav, I. Durdanovic, H. Samet, and H. P. Graf, “Pruning filters for efficient convnets,” arXiv preprint arXiv:1608.08710, 2016.
[66]
H. Wang and Y. Fu, “Trainability preserving neural pruning,” in ICLR, 2023.

  1. *Zequn Xie is the corresponding author.↩︎

  2. \(^{1}\)Bo Zhao is with Yale University↩︎

  3. \(^{2}\)Haoran Yu is with University of Florida↩︎

  4. \(^{3}\)Lifei Liu is with Wichita State University↩︎

  5. \(^{4}\)Zongcheng Chu is with Purdue University↩︎

  6. \(^{5}\)Yining Liu is with University of California, Berkeley↩︎

  7. \(^{6}\)Chang Liu is with the Institute of Computing Technology, Chinese Academy of Sciences↩︎

  8. \(^{7}\)Szu-Yu Chen is with Stevens Institute of Technology↩︎

  9. \(^{8}\)Zequn Xie is with Zhejiang University zqxie@zju.edu.cn↩︎