RandAugment¶
- class torchvision.transforms.RandAugment(num_ops: int = 2, magnitude: int = 9, num_magnitude_bins: int = 31, interpolation: InterpolationMode = InterpolationMode.NEAREST, fill: Optional[List[float]] = None)[source]¶
基于 “RandAugment: Practical automated data augmentation with a reduced search space” 论文的 RandAugment 数据增强方法。如果图像是 torch Tensor,则应为 torch.uint8 类型,并且应具有 […, 1 或 3, H, W] 形状,其中 … 表示任意数量的前导维度。如果 img 是 PIL Image,则应处于 “L” 或 “RGB” 模式。
- 参数:
num_ops (int) – 顺序应用的增强变换的数量。
magnitude (int) – 所有变换的幅度。
num_magnitude_bins (int) – 不同幅度值的数量。
interpolation (InterpolationMode) – 由
torchvision.transforms.InterpolationMode
定义的期望插值枚举。默认为InterpolationMode.NEAREST
。如果输入是 Tensor,则仅支持InterpolationMode.NEAREST
、InterpolationMode.BILINEAR
。fill (sequence 或 number, optional) – 变换后图像外部区域的像素填充值。如果给定一个数字,则该值分别用于所有波段。
使用
RandAugment
的示例