๐ค AI Summary
To address the challenges of large source-target domain discrepancies and severe label scarcity in few-shot medical image segmentation, this paper proposes an active, sequential auxiliary dataset selection frameworkโfirst modeling few-shot domain adaptation as a multi-armed bandit problem. We design a reward function evaluable with a single-round fine-tuning step, eliminating negative transfer induced by heuristic selection. By unifying foundation model adaptation, few-shot domain adaptation, active learning, and reinforcement learning, our method enables dynamic scheduling of auxiliary data and feature alignment across domains. On multi-center MRI and CT segmentation benchmarks, it achieves average Dice score improvements of 27.75% and 7.52%, respectively, substantially outperforming existing state-of-the-art methods. The core contribution lies in reformulating domain adaptation as a learnable sequential decision-making problem, thereby ensuring both efficiency and robust generalization under extreme label scarcity.
๐ Abstract
Recent advances in foundation models have brought promising results in computer vision, including medical image segmentation. Fine-tuning foundation models on specific low-resource medical tasks has become a standard practice. However, ensuring reliable and robust model adaptation when the target task has a large domain gap and few annotated samples remains a challenge. Previous few-shot domain adaptation (FSDA) methods seek to bridge the distribution gap between source and target domains by utilizing auxiliary data. The selection and scheduling of auxiliaries are often based on heuristics, which can easily cause negative transfer. In this work, we propose an Active and Sequential domain AdaPtation (ASAP) framework for dynamic auxiliary dataset selection in FSDA. We formulate FSDA as a multi-armed bandit problem and derive an efficient reward function to prioritize training on auxiliary datasets that align closely with the target task, through a single-round fine-tuning. Empirical validation on diverse medical segmentation datasets demonstrates that our method achieves favorable segmentation performance, significantly outperforming the state-of-the-art FSDA methods, achieving an average gain of 27.75% on MRI and 7.52% on CT datasets in Dice score. Code is available at the git repository: https://github.com/techicoco/ASAP.