A simple using_tensorboard.py program, as follows:
1 #using_tensorboard.py2 3 ImportTensorFlow as TF4 5A = Tf.constant (10,name="a")6b = Tf.constant (90,name="b")7y = tf. Variable (a+b*2,name='y')8Model =tf.initialize_all_variables ()9 Ten With TF. Session () as session: Onemerged =Tf.summary.merge_all () Awriter = Tf.summary.FileWriter ("/tmp/tensorflowlogs", Session.graph) - Session.run (model) - Print(Session.run (y))
After running the above code, start the Tensorboard service:
D:\tmp\tensorflowlogs>tensorboard--logdir=. Starting Tensorboard b' at http://0.0.0.0:6006
Then enter it in the browser: http://localhost:6006/
The result shows a blank.
The online search solution, which says it can only be displayed in Chrome, has been tested on 360 browsers and Google Chrome.
After a sudden thought might be a version issue, my Chrome browser version number is 44, the latest version is 60. Then upgrade to version 58, the results show that basically normal. But there are still webgl issues.
Tensorboard display blank resolution in Windows system browser