Tensorflow 설치 후

seon·2023년 10월 3일
0

AI

목록 보기
1/10
post-thumbnail
post-custom-banner

에러 해결

다음 코드를 실행했더니 다음과 같은 에러가 떴다.

import tensorflow as tf
hello = tf.constant("Hello World!")
sess = tf.Session()
print(sess.run(hello))

sess = tf.Session()
AttributeError: module 'tensorflow' has no attribute 'Session'. Did you mean: 'version'?

profile
CodeBaker🍰

0개의 댓글