Literature Note
/
We implement random color jitter as a custom preprocessing layer. (keras.layers.Layer 클래스를 상속받아 커스텀 레이어를 정의. code 조각 참고)
Search
Share
🍦
We implement random color jitter as a custom preprocessing layer. (keras.layers.Layer 클래스를 상속받아 커스텀 레이어를 정의. code 조각 참고)
출처
수집시간
2021/10/13 06:06
연결완료
인라인 메모
(참고1:tf만을 이용한 파이프라인) 에서는 kears 를 쓰지 않았는데 이렇게도 할 수 있구나.
참고
1.
Define the CutMix data augmentation function (tensorflow native 만 이용해서 custom augmentation 을 정의. tf.function 을 사용하는 code 코드 조각 참고)