tensorflow21《TensorFlow实战Google深度学习框架》笔记-09-02 TensorBoard命名空间 code

# 《TensorFlow实战Google深度学习框架》09 TensorBoard可视化
# win10 Tensorflow1.0.1 python3.5.3
# CUDA v8.0 cudnn-8.0-windows10-x64-v5.1
# filename:ts09.02.py # 命名空间

import tensorflow as tf

# 1. 不同的命名空间
with tf.variable_scope("foo"):
    a = tf.get_variable("bar", [1])
    print(a.name)
with tf.variable_scope("bar"):
    b = tf.get_variable("bar", [1])
    print(b.name)
'''
foo/bar:0
bar/bar:0
'''
# 2. tf.Variable和tf.get_variable的区别
with tf.name_scope("a"):
    a = tf.Variable([1])
    print(a.name)
    a = tf.get_variable("b", [1])
    print(a.name)
'''
a/Variable:0
b:0
'''

# 3. TensorBoard可以根据命名空间来整理可视化效果图上的节点
with tf.name_scope("input1"):
    input1 = tf.constant([1.0, 2.0, 3.0], name="input2")
with tf.name_scope("input2"):
    input2 = tf.Variable(tf.random_uniform([3]), name="input2")
output = tf.add_n([input1, input2], name="add")

# tensorboard --port=6006 --debug --logdir=c:/python35/tensorlog/show02
writer = tf.summary.FileWriter("c:/python35/tensorlog/show02", tf.get_default_graph())
writer.close()

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值