Reputation: 53
The BrainScript image reader supports horizontal flipping of training images. Is this also supported in Python? I did not see anything about it. Thx! https://github.com/Microsoft/CNTK/wiki/BrainScript-Image-reader
Upvotes: 1
Views: 86
Reputation: 476
Using CropType::RandomSize
or RandomArea
will set hFlip
to true.
m_hFlip = (m_cropType == CropType::RandomSide || m_cropType == CropType::RandomArea);
Upvotes: 1