If you are using PyTorch and just need the best working variant of TrivialAugment, we recommend to use theTrivialAugmentWideimplementation intorchvision:https://pytorch.org/vision/main/generated/torchvision.tra
Introduction 本文主要研究数据增强在图像分类场景的应用。图像分类中的数据增强是基于原始图像生成新的图像,增强完以后仍然属于相同的分类,相当于数据的扩充。早期的数据增强策略是纯人工设计的,直至AA等自动搜索出的数据增强策略的提出,才降低了数据增强的设计难度。 自动搜索的数据增强策略在使用时虽然是几乎for free的,...