Medical Image Segmentation with Limited Data
You have 500 labeled MRI scans for tumor segmentation. You have a massive GPU cluster. Your manager suggests using the latest Swin Transformer because it 'beat CNNs on ImageNet.'
You must reject the manager's suggestion. Transformers have almost no inductive bias and require millions of images to learn what a CNN knows by default (translation invariance). With only 500 images, a Transformer will heavily overfit.
A U-Net (a specialized CNN) with heavy data augmentation is chosen instead, achieving state-of-the-art results on the small dataset.