tensorboard

"tf"

Posted by zwt on December 19, 2020

重点

  • tf.namescope()、 tf.summary.FileWriter(‘logs/’,ss.graph)
  • 参数名、op都可以定义新的名称,如下A、B、C
  • 启动tensorboard:tensorboard –logdir=C:\Users\vip_g\logs
  • 用Google浏览器打开生成的http地址

代码示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import tensorflow as tf

#定义命名空间
with tf.name_scope('input'):
  #fetch:就是同时运行多个op的意思
  input1 = tf.constant(3.0,name='A')#定义名称,会在tensorboard中代替显示
  input2 = tf.constant(4.0,name='B')
  input3 = tf.constant(5.0,name='C')
with tf.name_scope('op'):
  #加法
  add = tf.add(input2,input3)
  #乘法
  mul = tf.multiply(input1,add)
with tf.Session() as ss:
  #默认在当前py目录下的logs文件夹,没有会自己创建
  wirter = tf.summary.FileWriter('logs/',ss.graph)
  result = ss.run([mul,add])
  print(result)

启动

1
tensorboard --logdir=C:\Users\vip_g\logs