[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.
오류발생..
'파이썬' 카테고리의 다른 글
[Python] Colab(코랩)과 로컬 Pycharm 연동하기 (6) | 2021.12.08 |
---|---|
[python] shift() , pct_change(), diff(), rolling(), resample() (0) | 2021.10.13 |
[python] feed_dect, placeholder (0) | 2021.09.23 |
[python] placeholder 오류 (0) | 2021.09.23 |
[python] 2차원 배열 입력받기 (0) | 2021.01.27 |