gpt4 book ai didi

python - 如何修复 : module 'tensorflow' has no attribute 'Session'

转载 作者:行者123 更新时间:2023-12-04 12:36:41 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Tensorflow 2.0 - AttributeError: module 'tensorflow' has no attribute 'Session'

(15 个回答)


去年关闭。



import tensorflow as tf
a=tf.constant(2)
b=tf.constant(3)
c=a+b
sess=tf.Session(c)
sess.run()

我收到错误消息模块“tensorflow”没有属性“Session”

最佳答案

从官方文档中尝试以下操作:

# Build a graph.
a = tf.constant(5.0)
b = tf.constant(6.0)
c = a * b

# Launch the graph in a session.
sess = tf.compat.v1.Session()

# Evaluate the tensor `c`.
print(sess.run(c))

关于python - 如何修复 : module 'tensorflow' has no attribute 'Session' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60787071/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com