Data augmentation in test/validation set?

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

    In computer vision, you can use data augmentation during test time to obtain different views on the test image. You then have to aggregate the results obtained from each image for example by averaging them.

    For example, given this symbol below, changing the point of view can lead to different interpretations :

提交回复
热议问题