[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space

Randaugment: Practical automated data augmentation with a reduced search space

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第1张图片

摘要

  • 自动搜索数据增强策略有着庞大且离散的搜索空间,AutoAugment的解决方法是在小规模proxy task上搜索,但proxy task和actual task之间的gap还未解决;
  • previous work需要独立搜索每个operation的强度和概率,本文发现可以只搜索一个强度,用它同时控制所有operations;
  • 在CIFAR-10/100,SVHN,ImageNet和COCO上取得了和之前持平或更好的效果。

方法

proxy task可能提供一个次优结果;前人工作指出学习到的增强策略通过增加样本多样性来改善模型;为了减少参数量,将选择概率改为统一的(1/K)。operation的强度离散为0-10。同时,本文观察到每个operation在训练时学习到的强度满足某种similar schedule。

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第2张图片

由此,本文假设可以用一个全局参数M来控制所有operations的强度。本文实验了4种M的变化模式:(1)常数;(2)随机;(3)线性增加;(3)上线逐渐增加的随机:

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第3张图片

RandAugment算法仅包括两个参数:N和M

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第4张图片

 

实验

ImageNet

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第5张图片

 COCO

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第6张图片

 transforms的数量

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第7张图片

学习执行operations的概率

 大多数transformations(除了posterize, equalize和autoContrast)是可导的,因此允许通过反向传播学习K个概率参数

[CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space_第8张图片

你可能感兴趣的:([CVPR-20] Randaugment: Practical automated data augmentation with a reduced search space)