contrib tensorflow 2.x 버전에서 다음과 같이 contrib 모듈을 사용하면 실행 시 에러가 난다. import tensorflow as tf r1 = tf.contrib.layers.l1_regularizer(0.04) r2 = tf.contrib.layers.l2_regularizer(0.04) # AttributeError: module 'tensorflow' has no attribute 'contrib' 이는 tf.contrib 모듈이 텐서플로 v2.0 에서 사라졌기 때문이다. 대부분의 v1.0 함수들은 compat 모듈을 사용하여 v2.0 에서도 그대로 사용할 수 있다. import tensorflow.compat.v1 as tf tf.disable_v2_behavior() 코..