[python] tf.constant vs tf.Variable

2021. 9. 23. 23:43파이썬

For tf.constant, the input value must be a static non-tensor type. For example a numpy array.

-> tf.constant의 인풋값은 tensor type이 아니어야 한다!

tesnor type의 값을 넣으면

Expected float32, got <tf.Tensor 'random_normal:0' shape=(3, 5) dtype=float32> of type 'Tensor' instead.

 

오류발생..