LoginSignup
0

More than 5 years have passed since last update.

Tensorflow0.7.1でSummaryWriterがAttributeErrorになる

Posted at

TensorFlowで学ぶディープラーニング入門を読みながらコードを書いていたら、突然 AttributeError となり、tensorboard用のデータが作れなかった。

解決方法

このエラーを出した原因のコードは

tf.train.SummaryWriter("/tmp/hogehoge_logs", sess.graph)

であり、本家のGithubを眺めていたら

tf.train.SummaryWriter("/tmp/hogehoge_logs", sess.graph.as_graph_def())

とするか、バージョンを上げろと書いてあったので前者を採用してみた結果無事動いた。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0