windowsでTensorFlow その17
1437 ワード
概要
windowsでTensorFlowやってみた。
tensorboardを使ってみた。
環境
windows 7 sp1 64bit
anaconda3
tensorflow 1.0
pyqt5
OpenAi Gym 0.5
プログラムの手順
tensorboardでloss見る
tf.summary.scalar("loss", loss)
merged = tf.summary.merge_all()
with tf.Session() as sess:
sess.run(tf.initialize_all_variables())
writer = tf.summary.FileWriter("./logs", graph = sess.graph)
for i in range(100001):
sess.run(train, feed_dict = {
x_in: batch_x,
y_out: batch_y
})
if i % 10000 == 0:
print (i)
summary = sess.run(merged, feed_dict = {
x_in: batch_x,
y_out: batch_y
})
writer.add_summary(summary, i)
tensorboard起動
tensorboard --logdir=./logs
tensorboard --logdir=./logs
localhost:6006をブラウザで見る。
写真
Author And Source
この問題について(windowsでTensorFlow その17), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/87675f81de552cd7aaf5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .