반응형

tensorflow v2 에서 v1 버전 소스코드를 실행하면 에러가 발생한다.

AttributeError: module 'tensorflow' has no attribute 'Session'

tensorflow v1에서 작성된 코드를 v2환경에서 실행했을때 발생하는 경우인데

import tensorflow as tf

아래 처럼 변경 및 추가를 해주면 실행 가능

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()

+ Recent posts