[TF 2.0] AttributeError: module 'tensorflow' has no attribute 'ConfigProto'
글 작성자: 만렙개발자
[분류 전체보기] - [Error] AttributeError: module 'tensorflow' has no attribute 'Session'
위 글에 이어서, 연계되어서 나타나는 tf 2.0, tf 2.x에서 나타나는 에러입니다.
tensorflow에서는 ConfigProto() 또한 1.x 버전의 잔유물로서 사용됩니다.
경로가 바뀌었기 때문에
tf.compat.v1.ConfigProto()
로 사용해야합니다.
Session과 GPU를 잘 잡는지 확인하려고 보통 함께 사용하는 함수는 다음과 같았죠.
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
이것을 에러 없이 사용하려면 아래와 같습니다.
sess = tf.compat.v1.Session(config=tf.compat.v1.ConfigProto(log_device_placement=True))
TF 2.0, TF 2.x에서의 변화와 주요 기능에 대해서는 다음 글을 참조해주세요.
[Deep Learning/tensorflow 2.0] - TensorFlow 2.0의 주요 기능 (TensorFlow와 Keras의 장점의 결합)
'📚 딥딥러닝 > tensorflow 2.x' 카테고리의 다른 글
댓글
이 글 공유하기
다른 글
-
[TF 2.0] AttributeError: module 'tensorflow' has no attribute 'Session'
[TF 2.0] AttributeError: module 'tensorflow' has no attribute 'Session'
2020.02.08 -
[TF 2.0] TensorFlow 2.0의 주요 기능 (TensorFlow와 Keras의 장점의 결합)
[TF 2.0] TensorFlow 2.0의 주요 기능 (TensorFlow와 Keras의 장점의 결합)
2020.02.07 -
[TF 2.0] BERT revision in Tensorflow 2.0 (BERT for TF 2.0)
[TF 2.0] BERT revision in Tensorflow 2.0 (BERT for TF 2.0)
2020.01.28 -
[TF 2.0] TensorFlow 2.0에서 TensorFlow 1.x 버전 코드 실행 및 자동 변환 스크립트 (텐서플로우 코드 자동 업그레이드 / 변환)
[TF 2.0] TensorFlow 2.0에서 TensorFlow 1.x 버전 코드 실행 및 자동 변환 스크립트 (텐서플로우 코드 자동 업그레이드 / 변환)
2020.01.20