keras-preprocessing/keras_preprocessing/image/affine_transformations.py line 85 86 tx = np.random.uniform(-hrg, hrg) * h ty = np.random.uniform(-wrg, wrg) * w should be: ty = np.random.uniform(-hrg, hrg) * h tx = np.random.uniform(-wrg, wrg) * w ?
keras-preprocessing/keras_preprocessing/image/affine_transformations.py
line 85 86
tx = np.random.uniform(-hrg, hrg) * h
ty = np.random.uniform(-wrg, wrg) * w
should be:
ty = np.random.uniform(-hrg, hrg) * h
tx = np.random.uniform(-wrg, wrg) * w
?