gpt4 book ai didi

python - 属性错误 : __enter__ from "with tf.Session as sess:"

转载 作者:太空狗 更新时间:2023-10-29 18:14:17 27 4
gpt4 key购买 nike

所以,这可能是一个愚蠢或显而易见的问题,但请耐心等待。我是一名数学专业的学生,​​我已经进入最后一年了,一直在学习使用神经网络来取乐。我不是程序员,所以错误是我经常遇到的事情。通常我可以把它们整理出来,但是今天我收到了一个我就是想不通。当我尝试执行我的代码时,我收到一条错误消息:

"Traceback (most recent call last):
File "C:\Python Practice\gan.py", line 93, in <module>
n()
File "C:\Python Practice\gan.py", line 73, in nn
with tf.Session as sess:
AttributeError: __enter__

从第 72 行到最后的代码如下所示:

def network_run():
with tf.Session as sess:
sess.run(tf.global_variables_initializer())
for i in range(200):
sess.run(opt_D, feed_dict={x_ten: images[np.random.choice(range(len(images)), batch_size)].reshape(batch_size, x_ten_size),
z_ten:z_noise(batch_size)})
sess.run(opt_G, feed_dict={z_ten:z_noise(batch_size)})
sess.run(opt_G, feed_dict={z_ten:z_noise(batch_size)})

gen_cost=sess.run(G_img, feed_dict={z_ten:z_noise(batch_size)})
disc_cost=sess.run(D_img, feed_dict={x_ten: images[np.random.choice(range(len(images)), batch_size)].reshape(batch_size, x_ten_size),
z_ten:z_noise(batch_size)})

image=sess.run(G(z_ten), feed_dict={z_ten:z_noise(batch_size)})
df=sess.run(tf.sigmoid(D_img_fake), feed_dict={z_ten:z_noise()})
print (i, gen_cost, disc_cost, image.max(), df[0][0])

image=sess.run(G(z_ten), feed_dict={z_ten:z_noise(batch_size)})
image1 = image[0].reshape([28, 28])
im = Image.fromarray(image1)
im.show()
network_run()

提前感谢任何帮助这个哭泣的傻瓜的人 - Max

最佳答案

这看起来像是一个简单的错字。您的代码中的以下行:

with tf.Session as sess:

...Session 后应该有括号,如下所示:

with tf.Session() as sess:

关于python - 属性错误 : __enter__ from "with tf.Session as sess:",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47804120/

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