CutMix is a regularization technique that trains strong classifiers with localizable features. It involves randomly cropping a region from an image and replacing it with a patch from another image. The ground truth labels are also mixed proportionally to the pixel ratio. This allows for no information loss unlike dropout methods, while still enhancing localization ability by learning from partial views. CutMix outperforms other data augmentation techniques like Mixup by generating more natural composite images and helps models better localize objects. It has been shown to work well as a complementary technique to other regularizers and achieves state-of-the-art results on ImageNet and CIFAR-10 classification tasks when implemented in PyTorch.