⚒️ 코드 에러 모음집 ⚒️
[Tensorflow 오류] AttributeError: module 'tensorflow' has no attribute 'global_variables_initializer'
공대생 배기웅
2020. 7. 15. 03:49
반응형
https://vispud.blogspot.com/2019/05/tensorflow200a0-attributeerror-module.html
import tensorflow as tf
model=tf.global_variables_initializer()
이렇게 명령문을 작성하였더니
이런 오류가 발생하였다.
해결방법은
import tensorflow as tf
model=tf.compat.v1.global_variables_initializer()
이런 식으로 작성하여 주면 된다.
텐서플로우 라이브러리의 compat 라이브러리를 직접 참조를 해주면 된다.
728x90
반응형