gpt4 book ai didi

python - 属性错误: module 'tensorflow.python.summary.summary' has no attribute 'FileWriter'

转载 作者:行者123 更新时间:2023-12-02 07:22:55 31 4
gpt4 key购买 nike

我收到此错误,尽管我在所有地方都提到 file_writer = tf.summary.FileWriter('/path/to/logs', sess.graph) 是正确的实现的thisthis .

这是错误:

Traceback (most recent call last): File "tfvgg.py", line 304, in writer = tf.summary.FileWriter("/tmp/tfvgg", sess.graph) AttributeError: module 'tensorflow.python.summary.summary' has no attribute 'FileWriter'

这是我正在使用的代码:

# init
sess = tf.Session()
writer = tf.summary.FileWriter("/tmp/tfvgg", sess.graph)
init = tf.initialize_all_variables()
sess.run(init)

与其他 summary 方法一样,使用 FileWriter 的正确方法是否发生了变化?

最佳答案

为了以后遇到相同情况的人引用,将 tf.summary.FileWriter() 更改为 tf.train.SummaryWriter() 解决了这个问题并允许使用图表Tensorboard 中的可视化。正如我所想,FileWriter 似乎已被弃用(尽管在 IDE 中搜索 tf 方法时它仍然奇怪地出现)

关于python - 属性错误: module 'tensorflow.python.summary.summary' has no attribute 'FileWriter' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43304270/

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