Windows下tensorboard简要教程
在构造模型的时候加入几句话:
init = tf.global_variables_initializer()
(初始化结束以后加入这几句话)
tf.summary.scalar("loss", correct_pred)
tf.summary.scalar("accuracy", accuracy)
(如果有两句以上语句,才使用下面的语句)
summary_op = tf.summary.merge_all()
with tf.Session() as sess:
summary_writer = tf.summary.FileWriter("E:/gru/logs", graph_def=sess.graph_def)
# Run the initializer
sess.run(init)
for step in range(1, training_steps+1):
batch_x, batch_y = mnist.train.next_batch(batch_size)
# Run optimization op (backprop)
sess.run(train_op, feed_dict={X: batch_x, Y: batch_y})
if step % display_step == 0 or step == 1:
# Calculate batch loss and accura
summary_str = sess.run(summary_op,feed_dict={X: batch_x, Y: batch_y})
summary_writer.add_summary(summary_str, step)
代码写好后可以点点击调试
代码部分结束:
打开你的cmd,请注意在cmd中一定可以运行python,如果不能运行请检查环境变量是否配置成功,输入以下指令,其中logdir的地址一定要和运行的python文件中中一致
打开浏览器http://127.0.0.1:6006/,就可以可视化观察自己想观测的图了,并且可以看到所写的模型的基本结构
这些是很久之前写的教程,在使用tensorboard中发现新的问题:
(1)由于tensorflow版本更新的问题,许多东西用着用着就不能用了,比如:
tf.train.SummaryWriter改为:tf.summary.FileWriter
这里贴一个博客,可以对应着修改:
https://blog.csdn.net/waterydd/article/details/70237984
(2)在cmd中使用tensorboard出现:importerror:cannot import name 'encodings',对tensorflow进行升级处理,打开cmd,输入
pip uninstall tensorflow
pip -U install tensorflow
友情提示:换源
(3)使用tf.summary.merge_all()注意,在不同模型中分开merge,例如gan网络
示例代码:
from __future__ import print_function
import tensorflow as tf
from tensorflow.contrib import rnn
# Import MNIST data
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("E:/MachineLearning/", one_hot=True)
'''
To classify images using a recurrent neural network, we consider every image
row as a sequence of pixels. Because MNIST image shape is 28*28px, we will then
handle 28 sequences of 28 steps for every sample.
'''
# Training Parameters
learning_rate = 0.001
training_steps = 10000
batch_size = 128
display_step = 200
# Network Parameters
num_input = 28 # MNIST data input (img shape: 28*28)
timesteps = 28 # timesteps
num_hidden = 128 # hidden layer num of features
num_classes = 10 # MNIST total classes (0-9 digits)
# tf Graph input
X = tf.placeholder("float", [None, timesteps, num_input])
Y = tf.placeholder("float", [None, num_classes])
# Define weights
weights = { 'out': tf.Variable(tf.random_normal([num_hidden, num_classes]))
}
biases = {'out': tf.Variable(tf.random_normal([num_classes]))}
def RNN(x, weights, biases):
x = tf.unstack(x, timesteps, 1)
# Define a lstm cell with tensorflow
lstm_cell = rnn.BasicLSTMCell(num_hidden, forget_bias=1.0)
# Get lstm cell output
outputs, states = rnn.static_rnn(lstm_cell, x, dtype=tf.float32)
# Linear activation, using rnn inner loop last output
return tf.matmul(outputs[-1], weights['out']) + biases['out']
logits = RNN(X, weights, biases)
prediction = tf.nn.softmax(logits)
# Define loss and optimizer
loss_op = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(
logits=logits, labels=Y))
optimizer = tf.train.GradientDescentOptimizer(learning_rate=learning_rate)
train_op = optimizer.minimize(loss_op)
# Evaluate model (with test logits, for dropout to be disabled)
correct_pred = tf.equal(tf.argmax(prediction, 1), tf.argmax(Y, 1))
accuracy = tf.reduce_mean(tf.cast(correct_pred, tf.float32))
# Initialize the variables (i.e. assign their default value)
init = tf.global_variables_initializer()
tf.summary.scalar("loss", correct_pred)
tf.summary.scalar("accuracy", accuracy)
summary_op = tf.summary.merge_all()
# Start training
with tf.Session() as sess:
summary_writer = tf.summary.FileWriter("E:/gru/logs", graph_def=sess.graph_def)
# Run the initializer
sess.run(init)
for step in range(1, training_steps+1):
batch_x, batch_y = mnist.train.next_batch(batch_size)
# Reshape data to get 28 seq of 28 elements
batch_x = batch_x.reshape((batch_size, timesteps, num_input))
# Run optimization op (backprop)
sess.run(train_op, feed_dict={X: batch_x, Y: batch_y})
if step % display_step == 0 or step == 1:
# Calculate batch loss and accuracy
loss, acc = sess.run([loss_op, accuracy], feed_dict={X: batch_x, Y: batch_y})
print("Step " + str(step) + ", Minibatch Loss= " + "{:.4f}".format(loss) + ", Training Accuracy= "+"{:.3f}".format(acc))
summary_str = sess.run(summary_op,feed_dict={X: batch_x, Y: batch_y})
summary_writer.add_summary(summary_str, step)
print("Optimization Finished!")
# Calculate accuracy for 128 mnist test images
test_len = 128
test_data = mnist.test.images[:test_len].reshape((-1, timesteps, num_input))
test_label = mnist.test.labels[:test_len]
print("Testing Accuracy:", \
sess.run(accuracy, feed_dict={X: test_data, Y: test_label}))
print('sink')