TensorFLow 变量命名空间实例


Posted in Python onFebruary 11, 2020

一、name_scope

with tf.name_scope(name):

name_scope: 为了更好地管理变量的命名空间而提出的。比如在 tensorboard 中,因为引入了 name_scope, 我们的 Graph 看起来才井然有序。

name_scope 对 get_variable 创建变量的 name 没有影响,即 get_variable 创建的变量不在 name_scope 这个命名空间中

二、variable_scope

with tf.variable_scope(name_or_scope, reuse=None):

variable_scope: 大部分情况下,跟 tf.get_variable() 配合使用,实现变量共享的功能

可通过tf.get_variable_scope().reuse == True/False 判断参变量是否共享

当前变量作用域可以用tf.get_variable_scope()进行检索并且reuse 标签可以通过调用tf.get_variable_scope().reuse_variables()设置为True

三、共享参变量

1、方法

使用 tf.Variable() 创建同一个 name 的变量(操作名不同),均不会报错,但系统会自动修改 name(实质还是不让共享参变量)

使用 tf.get_varible() 创建同一个 name 的变量(操作名不同),均会报错(为了避免无意识的参变量复用造成的错误)

我们可以在 variable_scope 中使用 tf.get_variable() 创建变量,并通过 with tf.variable_scope(name_or_scope, reuse=True) 来共享参变量:

reuse=True:将只能获取命名空间中已经创建过的变量,如果变量不存在,则tf.get_variable函数将报错。

reuse=None / False:tf.get_variable操作将创建新的变量,如果同名的变量已经存在,则tf.get_variable函数将报错。

2、代码示例

# 下面是定义一个卷积层的通用方式
def conv_relu(input, kernel_shape, bias_shape):
  # Create variable named "weights".
  weights = tf.get_variable("weights", kernel_shape,
    initializer=tf.random_normal_initializer())
  # Create variable named "biases".
  biases = tf.get_variable("biases", bias_shape,
    initializer=tf.constant_intializer(0.0))
  conv = tf.nn.conv2d(input, weights,
    strides=[1, 1, 1, 1], padding='SAME')
  return tf.nn.relu(conv + biases)


# 定义一个图片过滤器
def my_image_filter(input_images):
  with tf.variable_scope("conv1"):
    # Variables created here will be named "conv1/weights", "conv1/biases".
    relu1 = conv_relu(input_images, [5, 5, 32, 32], [32])
  with tf.variable_scope("conv2"):
    # Variables created here will be named "conv2/weights", "conv2/biases".
    return conv_relu(relu1, [5, 5, 32, 32], [32])


# 实验一:调用 my_image_filter() 两次
result1 = my_image_filter(image1)
result2 = my_image_filter(image2)
>>> Raises ValueError(... conv1/weights already exists ...), tf.get_variable()会检测已经存在的变量是否已经共享


# 解决方法一, 可以在设计网络时加上一个布尔型的 reuse 参数 
with tf.variable_scope("image_filters"):
  result1 = my_image_filter(image1)
with tf.variable_scope("image_filters", reuse=True):
  result2 = my_image_filter(image2)


# 解决方法二
with tf.variable_scope("image_filters") as scope:
  # 下面我们两次调用 my_image_filter 函数,但是由于引入了变量共享机制
  # 可以看到我们只是创建了一遍网络结构。
  result1 = my_image_filter(image1)
  scope.reuse_variables()
  result2 = my_image_filter(image2)


# 解决方法三
with tf.variable_scope("image_filters") as scope:
  result1 = my_image_filter(image1)
with tf.variable_scope(scope, reuse=True):
  result2 = my_image_filter(image2)


# 打印出所有的可训练参变量
vs = tf.trainable_variables()
print('There are %d trainable_variables in the Graph: ' % len(vs))
for v in vs:
  print(v)


# 输出结果证明确实:参变量共享,因为只有四个变量,没有创建新的变量。
There are 4 trainable_variables in the Graph: 
Tensor("image_filters/conv1/weights/read:0", shape=(5, 5, 32, 32), dtype=float32)
Tensor("image_filters/conv1/biases/read:0", shape=(32,), dtype=float32)
Tensor("image_filters/conv2/weights/read:0", shape=(5, 5, 32, 32), dtype=float32)
Tensor("image_filters/conv2/biases/read:0", shape=(32,), dtype=float32)

四、取出所有可训练参数

# Returns all variables created with trainable=True in a var_list
var_list = tf.trainable_variables()

init = tf.global_variables_initializer()
sess.run(init)

for var in var_list:
  sess.run(var)

以上这篇TensorFLow 变量命名空间实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python正则匹配抓取豆瓣电影链接和评论代码分享
Dec 27 Python
Python语言的面相对象编程方式初步学习
Mar 12 Python
python3将视频流保存为本地视频文件
Jun 20 Python
python-str,list,set间的转换实例
Jun 27 Python
使用python进行波形及频谱绘制的方法
Jun 17 Python
Python利用requests模块下载图片实例代码
Aug 12 Python
Python定时任务随机时间执行的实现方法
Aug 14 Python
Python爬虫之urllib基础用法教程
Oct 12 Python
Spring Cloud Feign高级应用实例详解
Dec 10 Python
使用OpenCV-python3实现滑动条更新图像的Canny边缘检测功能
Dec 12 Python
python实现图像拼接功能
Mar 23 Python
Python列表如何更新值
May 27 Python
TensorFlow 输出checkpoint 中的变量名与变量值方式
Feb 11 #Python
Python中文分词库jieba,pkusegwg性能准确度比较
Feb 11 #Python
pytorch中图像的数据格式实例
Feb 11 #Python
对tensorflow中tf.nn.conv1d和layers.conv1d的区别详解
Feb 11 #Python
python中文分词库jieba使用方法详解
Feb 11 #Python
Transpose 数组行列转置的限制方式
Feb 11 #Python
Tensorflow:转置函数 transpose的使用详解
Feb 11 #Python
You might like
php学习之数据类型之间的转换代码
2011/05/29 PHP
PHP中的按位与和按位或操作示例
2014/01/27 PHP
javascript 面向对象全新理练之继承与多态
2009/12/03 Javascript
基于Jquery的仿Windows Aero弹出窗(漂亮的关闭按钮)
2010/09/28 Javascript
利用Keydown事件阻止用户输入实现代码
2014/03/11 Javascript
Jquery实现图片预加载与延时加载的方法
2014/12/22 Javascript
jquery获取文档高度和窗口高度汇总
2016/01/25 Javascript
关于JavaScript中的this指向问题总结篇
2017/07/23 Javascript
webpack打包多页面的方法
2018/11/30 Javascript
JavaScript中break、continue和return的用法区别实例分析
2020/03/02 Javascript
[49:56]VG vs Optic 2018国际邀请赛小组赛BO2 第一场 8.19
2018/08/21 DOTA
Python中操作MySQL入门实例
2015/02/08 Python
Python两个整数相除得到浮点数值的方法
2015/03/18 Python
Python创建模块及模块导入的方法
2015/05/27 Python
Python多进程库multiprocessing中进程池Pool类的使用详解
2017/11/24 Python
Tensorflow实现卷积神经网络的详细代码
2018/05/24 Python
Python3.7实现中控考勤机自动连接
2018/08/28 Python
Python实现根据日期获取当天凌晨时间戳的方法示例
2019/04/09 Python
python队列Queue的详解
2019/05/10 Python
python 机器学习之支持向量机非线性回归SVR模型
2019/06/26 Python
django 配置阿里云OSS存储media文件的例子
2019/08/20 Python
python中open函数的基本用法示例
2019/09/07 Python
Python使用matplotlib绘制三维参数曲线操作示例
2019/09/10 Python
wxPython修改文本框颜色过程解析
2020/02/14 Python
Python定时从Mysql提取数据存入Redis的实现
2020/05/03 Python
HTML5 Canvas 实现K线图的示例代码
2019/12/23 HTML / CSS
高中三年学习生活的自我评价
2013/10/10 职场文书
函授毕业生的自我鉴定
2013/11/26 职场文书
房地产广告策划方案
2014/05/15 职场文书
勿忘国耻9.18演讲稿(经典篇)
2014/09/14 职场文书
高校师德师风自我剖析材料
2014/09/29 职场文书
寝室长工作失责检讨书
2014/10/06 职场文书
党性分析自查总结
2014/10/14 职场文书
工作失职检讨书
2015/01/26 职场文书
公司周年庆典致辞
2015/07/30 职场文书
Redis基本数据类型哈希Hash常用操作命令
2022/06/01 Redis