Data augmentation in test/validation set?

前端 未结 7 1527
甜味超标
甜味超标 2021-02-12 14:57

It is common practice to augment data (add samples programmatically, such as random crops, etc. in the case of a dataset consisting of images) on both training and test set, or

7条回答
  •  庸人自扰
    2021-02-12 15:37

    Only on training. Data augmentation is used to increase the size of training set and to get more different images. Technically, you could use data augmentation on test set to see how model behaves on such images, but usually people don't do it.

提交回复
热议问题