tensorboard使用

简介:

              Windows下使用tensorboard可视化工具。

 

1.安装tensorflow

        包含了tensorboard。使用pip list或conda list指令(安装Anaconda后)查看。

tensorboard使用_第1张图片

 

2.运行程序

import tensorflow as tf
import os

os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'

a = tf.constant(5.0)
b = tf.constant(6.0)
c = a * b

# Evaluate the tensor `c`.
with tf.Session() as sess:
    sess.run(tf.global_variables_initializer())
    writer = tf.summary.FileWriter("D://Python工程//TensorBoard//test",sess.graph)
    print(sess.run(c))
writer.close()

 tensorboard使用_第2张图片

 

3.启动tensorboard

cmd或者Anaconda Prompt执行以下指令,对应路径的后面加上--host=127.0.0.1

tensorboard --logdir=D:\Python工程\TensorBoard\test\ --host=127.0.0.1

tensorboard使用_第3张图片

 

4.结果 

tensorboard使用_第4张图片

你可能感兴趣的:(Python,Python,tensorflow,tensorboard)