AI/Ai code Error
파이썬 텐서플로우 에러해결 :: AttributeError: module 'tensorflow' has no attribute 'Session' / RuntimeError: The Session graph is empty. Add operations to the graph before calling run().
모두를 위한 딥러닝 첫 강의부터 에러...;; tensorflow부터 다시 공부하는 차원에서 강의 첫 코드를 작성했는데 에러 발생... 아래 코드를 실행하면 다음과 같은 오류가 발생함. # Create a constant op # This op is added as a node to the default graph hello = tf.constant("Hello, TensorFlow!") # seart a TF session sess = tf.Session() # run the op and set result print(sess.run(hello)) cs 구글링 결과 tf.Sesstion()의 경우 tensorflow 버전 1.x.x 에서 사용하는 표현 방식... (본인은 tensorflow versio..