<OOO>

AttributeError: module 'tensorflow' has no attribute 'placeholder' 해결 본문

파이썬

AttributeError: module 'tensorflow' has no attribute 'placeholder' 해결

<OOO> 2020. 12. 21. 22:29
728x90

기존에 쓰던 

import tensorflow as tf 대신 

 

import tensorflow.compat.v1 as tf 와

tf.disable_v2_behavior()를 추가하면 해결이 된다.

'파이썬' 카테고리의 다른 글

키움증권 api 종목 코드 얻기  (0) 2021.02.18
키움증권 api 사용자 정보 얻어오기  (0) 2021.02.18
키움증권 api 로그인  (0) 2021.02.18
키움증권 api 사용법  (0) 2021.02.18
python ta-lib 설치 트러블슈팅  (0) 2020.12.23
Comments