移除注释和删掉不用的代码
This commit is contained in:
parent
74f6a5cb3d
commit
742cb9a3c6
|
@ -77,7 +77,7 @@ PaddleOCR提供了多种数据增强方式,如果您希望在训练时加入
|
|||
默认的扰动方式有:颜色空间转换(cvtColor)、模糊(blur)、抖动(jitter)、噪声(Gasuss noise)、随机切割(random crop)、透视(perspective)、颜色反转(reverse),随机数据增强(RandAugment)。
|
||||
|
||||
训练过程中除随机数据增强外每种扰动方式以50%的概率被选择,具体代码实现请参考:
|
||||
[randaugment.py.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/cls/randaugment.py)
|
||||
[randaugment.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/cls/randaugment.py)
|
||||
[img_tools.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/rec/img_tools.py)
|
||||
|
||||
*由于OpenCV的兼容性问题,扰动操作暂时只支持linux*
|
||||
|
|
|
@ -78,7 +78,7 @@ PaddleOCR provides a variety of data augmentation methods. If you want to add di
|
|||
The default perturbation methods are: cvtColor, blur, jitter, Gasuss noise, random crop, perspective, color reverse, RandAugment.
|
||||
|
||||
Except for RandAugment, each disturbance method is selected with a 50% probability during the training process. For specific code implementation, please refer to:
|
||||
[randaugment.py.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/cls/randaugment.py)
|
||||
[randaugment.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/cls/randaugment.py)
|
||||
[img_tools.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/rec/img_tools.py)
|
||||
|
||||
|
||||
|
|
|
@ -122,8 +122,6 @@ class SimpleReader(object):
|
|||
img = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
|
||||
|
||||
if self.use_distort:
|
||||
# if random.randint(1, 100)>= 50:
|
||||
# img = random_crop(img)
|
||||
img = warp(img, 10)
|
||||
img = self.randaug(img)
|
||||
norm_img = resize_norm_img(img, self.image_shape)
|
||||
|
|
Loading…
Reference in New Issue