Data Augmentation의 실제 진행 과정
Colour shifting 필요한 때
Flipping
색상모델(Gray,RGB,HSV,YCbCr)에 대한 설명
Image Augmentation 종류에 대한 이미지 예를 볼 수 있음
flip_ud_image = tf.keras.preprocessing.image.array_to_img(flip_ud_tensor)
plt.imshow()
범위에 맞지 않는 어레이여도 array_to_img()
메소드를 통해 plt.imshow()
에 쓸 수 있는 이미지로 바꿔주는 것 같다.Affine Transformation
Blurring은 언제 쓸까?
as_supervised=True
tfds로 데이터 갖고 올 때 이거를 해줘야 target이 구분되는 것 같다.(그러면 model.fit()할 때 target 파라미터 안 넣어줘도 되는 듯)