Browse Source

Merge pull request #4 from tomohideshibata/fix_logdir_name

fix logdir name
Aymeric Damien 9 years ago
parent
commit
89113fda5d

+ 1 - 1
examples/5 - User Interface/graph_visualization.py

@@ -72,7 +72,7 @@ with tf.Session() as sess:
     print "Accuracy:", accuracy.eval({x: mnist.test.images, y: mnist.test.labels})
 
 '''
-Run the command line: tensorboard --logdir=/tmp/tensorflow
+Run the command line: tensorboard --logdir=/tmp/tensorflow_logs
 Open http://localhost:6006/ into your web browser
 '''
 

+ 1 - 1
examples/5 - User Interface/loss_visualization.py

@@ -81,6 +81,6 @@ with tf.Session() as sess:
     print "Accuracy:", accuracy.eval({x: mnist.test.images, y: mnist.test.labels})
 
 '''
-Run the command line: tensorboard --logdir=/tmp/tensorflow
+Run the command line: tensorboard --logdir=/tmp/tensorflow_logs
 Open http://localhost:6006/ into your web browser
 '''