当前位置: 代码迷 >> 综合 >> Tensorboard 可视化
  详细解决方案

Tensorboard 可视化

热度:80   发布时间:2023-10-20 20:42:54.0

1. 将想要命名的值添加代码及缩进

with tf.name_scope('input'):with tf.name_scope('train_data'):ph_train_data = tf.placeholder(tf.float32, [None, n_time_step, n_dim])with tf.name_scope('train_label'):ph_train_label = tf.placeholder(tf.float32, [None, n_classes])

2. 运行 session

init = tf.global_variables_initializer()
with tf.Session() as sess:sess.run(init)tf.summary.FileWriter("logs/", sess.graph)

3. 运行代码后,graph数据将自动保存在当前项目下的 "logs" 文件夹下

Tensorboard 可视化

4. 打开cmd,文件夹转到要打开的 logs 所在项目,输入 tensorboard --logdir logs

Tensorboard 可视化

Tensorboard 可视化

复制网址到Google浏览器打开 (或者直接http://localhost:6006)即可看见生成的 Graph

          Tensorboard 可视化

 

 

  相关解决方案