Data augmentation in test/validation set?

前端 未结 7 1542
甜味超标
甜味超标 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:44

    Data augmentation is done only on training set as it helps the model become more generalize and robust. So there's no point of augmenting the test set.

    0 讨论(0)
提交回复
热议问题