AttributeError: 'module' object has no attribute 'SummaryWriter'

スポンサーリンク

カテゴリ:Tensorboard
Python バージョン:Python2.7
Tensorflowバージョン:Tnsorflow 1.0
OSバージョン:Ubuntu 16.04.2


問題



以下のコードを実行すると、AttributeError: 'module' object has no attribute 'SummaryWriter'エラーが発生する場合があります。


import tensorflow as tf

c1 = tf.constant(1)
c2 = tf.constant(2)
c3 = tf.constant(3)

c1_c2 = tf.add(c1, c2)
c1_c2_c3 = tf.add(c1_c2, c3)


with tf.Session() as sess:
result = sess.run(c1_c2_c3)
print(result)

tf.train.SummaryWriter('/tmp/logfile', sess.graph)


原因


tf.train.SummaryWriter は非推奨になったようです。代わりに tf.summary.FileWriter を使用します。


修正コード




import tensorflow as tf

c1 = tf.constant(1)
c2 = tf.constant(2)
c3 = tf.constant(3)

c1_c2 = tf.add(c1, c2)
c1_c2_c3 = tf.add(c1_c2, c3)


with tf.Session() as sess:
result = sess.run(c1_c2_c3)
print(result)

writer = tf.summary.FileWriter('/tmp/logfile', graph=sess.graph)



スポンサーリンク

[Tensorflow FAQ]

[Tensorflow トップへ]


このページは独学で学習した結果をメモした結果です。内容に不備・誤りがある可能性があります。 また今後仕様が変更となり記述が不正確になる可能性もあります。あくまでも自己責任で本ページを参考にしてください。 本サイト内掲載されている情報は、著作権法により保護されています。いかなる場合でも権利者の許可なくコピー、配布することはできません。