반응형
https://better-coding.com/solved-attributeerror-module-tensorflow-has-no-attribute-placeholder/
import tensorflow.compat.v1 as tf
x = tf.placeholder(shape=[None, 2], dtype=tf.float32)
tensorflow의 placeholder함수를 사용하다보면 아래와 같은 오류가 발생한다.
이 문구를 추가해주면 해결이 된다.
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
x = tf.placeholder(shape=[None, 2], dtype=tf.float32)
728x90
반응형