tensorflow创建变量以及根据名称查找变量


Posted in Python onMarch 10, 2018

环境:Ubuntu14.04,tensorflow=1.4(bazel源码安装),Anaconda python=3.6

声明变量主要有两种方法:tf.Variabletf.get_variable,二者的最大区别是:

(1) tf.Variable是一个类,自带很多属性函数;而 tf.get_variable是一个函数;
(2) tf.Variable只能生成独一无二的变量,即如果给出的name已经存在,则会自动修改生成新的变量name;
(3) tf.get_variable可以用于生成共享变量。默认情况下,该函数会进行变量名检查,如果有重复则会报错。当在指定变量域中声明可

以变量共享时,可以重复使用该变量(例如RNN中的参数共享)。
下面给出简单的的示例程序:

import tensorflow as tf

with tf.variable_scope('scope1',reuse=tf.AUTO_REUSE) as scope1:
  x1 = tf.Variable(tf.ones([1]),name='x1')
  x2 = tf.Variable(tf.zeros([1]),name='x1')
  y1 = tf.get_variable('y1',initializer=1.0)
  y2 = tf.get_variable('y1',initializer=0.0)
  init = tf.global_variables_initializer()
  with tf.Session() as sess:
    sess.run(init)
    print(x1.name,x1.eval())
    print(x2.name,x2.eval())
    print(y1.name,y1.eval())
    print(y2.name,y2.eval())

输出结果为:

scope1/x1:0 [ 1.]
scope1/x1_1:0 [ 0.]
scope1/y1:0 1.0
scope1/y1:0 1.0

1. tf.Variable(…)

tf.Variable(…)使用给定初始值来创建一个新变量,该变量会默认添加到 graph collections listed in collections, which defaults to [GraphKeys.GLOBAL_VARIABLES]。

如果trainable属性被设置为True,该变量同时也会被添加到graph collection GraphKeys.TRAINABLE_VARIABLES.

# tf.Variable
__init__(
  initial_value=None,
  trainable=True,
  collections=None,
  validate_shape=True,
  caching_device=None,
  name=None,
  variable_def=None,
  dtype=None,
  expected_shape=None,
  import_scope=None,
  constraint=None
)

2. tf.get_variable(…)

tf.get_variable(…)的返回值有两种情形:

使用指定的initializer来创建一个新变量;
当变量重用时,根据变量名搜索返回一个由tf.get_variable创建的已经存在的变量;

get_variable(
  name,
  shape=None,
  dtype=None,
  initializer=None,
  regularizer=None,
  trainable=True,
  collections=None,
  caching_device=None,
  partitioner=None,
  validate_shape=True,
  use_resource=None,
  custom_getter=None,
  constraint=None
)

3. 根据名称查找变量

在创建变量时,即使我们不指定变量名称,程序也会自动进行命名。于是,我们可以很方便的根据名称来查找变量,这在抓取参数、finetune模型等很多时候都很有用。

示例1:

通过在tf.global_variables()变量列表中,根据变量名进行匹配搜索查找。 该种搜索方式,可以同时找到由tf.Variable或者tf.get_variable创建的变量。

import tensorflow as tf

x = tf.Variable(1,name='x')
y = tf.get_variable(name='y',shape=[1,2])
for var in tf.global_variables():
  if var.name == 'x:0':
    print(var)

示例2:

利用get_tensor_by_name()同样可以获得由tf.Variable或者tf.get_variable创建的变量。
需要注意的是,此时获得的是Tensor, 而不是Variable,因此 x不等于x1.

import tensorflow as tf

x = tf.Variable(1,name='x')
y = tf.get_variable(name='y',shape=[1,2])

graph = tf.get_default_graph()

x1 = graph.get_tensor_by_name("x:0")
y1 = graph.get_tensor_by_name("y:0")

示例3:

针对tf.get_variable创建的变量,可以利用变量重用来直接获取已经存在的变量。

with tf.variable_scope("foo"):
  bar1 = tf.get_variable("bar", (2,3)) # create

with tf.variable_scope("foo", reuse=True):
  bar2 = tf.get_variable("bar") # reuse

with tf.variable_scope("", reuse=True): # root variable scope
  bar3 = tf.get_variable("foo/bar") # reuse (equivalent to the above)

print((bar1 is bar2) and (bar2 is bar3))

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python求解水仙花数的方法
May 11 Python
Python设计模式之抽象工厂模式
Aug 25 Python
python开发环境PyScripter中文乱码问题解决方案
Sep 11 Python
Python 网页解析HTMLParse的实例详解
Aug 10 Python
pandas dataframe添加表格框线输出的方法
Feb 08 Python
python实现图片转字符小工具
Apr 30 Python
python-django中的APPEND_SLASH实现方法
Jun 21 Python
Python如何使用k-means方法将列表中相似的句子归类
Aug 08 Python
Python django框架输入汉字,数字,字符生成二维码实现详解
Sep 24 Python
Selenium自动化测试工具使用方法汇总
Jun 12 Python
windows支持哪个版本的python
Jul 03 Python
python 基于pygame实现俄罗斯方块
Mar 02 Python
Python2中文处理纪要的实现方法
Mar 10 #Python
python实现冒泡排序算法的两种方法
Mar 10 #Python
Python使用pyh生成HTML文档的方法示例
Mar 10 #Python
tensorflow获取变量维度信息
Mar 10 #Python
TensorFlow变量管理详解
Mar 10 #Python
TensorFlow神经网络优化策略学习
Mar 09 #Python
TensorFlow实现AutoEncoder自编码器
Mar 09 #Python
You might like
基于在生产环境中使用php性能测试工具xhprof的详解
2013/06/03 PHP
Yii操作数据库的3种方法
2014/03/11 PHP
最准确的php截取字符串长度函数
2015/10/29 PHP
PHP连接MSSQL方法汇总
2016/02/05 PHP
PHP 常用时间函数资料整理
2016/10/22 PHP
thinkPHP实现多字段模糊匹配查询的方法
2016/12/01 PHP
php 删除一维数组中某一个值元素的操作方法
2018/02/01 PHP
js 蒙版进度条(结合图片)
2010/03/10 Javascript
JS中window.open全屏命令解析及使用示例
2013/12/11 Javascript
js生成动态表格并为每个单元格添加单击事件的方法
2014/04/14 Javascript
js怎么判断flash swf文件是否加载完毕
2014/08/14 Javascript
JavaScript中的anchor()方法使用详解
2015/06/08 Javascript
jQuery子元素过滤选择器用法示例
2016/09/09 Javascript
用Angular实时获取本地Localstorage数据,实现一个模拟后台数据登入的效果
2016/11/09 Javascript
支持移动端原生js轮播图
2017/02/16 Javascript
无法获取隐藏元素宽度和高度的解决方案
2017/03/07 Javascript
AngularJS1.X学习笔记2-数据绑定详解
2017/04/01 Javascript
jquery点赞功能实现代码 点个赞吧!
2020/05/29 jQuery
vue中父子组件注意事项,传值及slot应用技巧
2018/05/09 Javascript
vue-router判断页面未登录自动跳转到登录页的方法示例
2018/11/04 Javascript
koa router 多文件引入的方法示例
2019/05/22 Javascript
详解ES6 export default 和 import语句中的解构赋值
2019/05/28 Javascript
vue 重塑数组之修改数组指定index的值操作
2020/08/09 Javascript
Python中的Numpy入门教程
2014/04/26 Python
Python格式化输出%s和%d
2018/05/07 Python
ubuntu16.04制作vim和python3的开发环境
2018/09/23 Python
python 对给定可迭代集合统计出现频率,并排序的方法
2018/10/18 Python
python字典嵌套字典的情况下找到某个key的value详解
2019/07/10 Python
python滑块验证码的破解实现
2019/11/10 Python
Python3.9.0 a1安装pygame出错解决全过程(小结)
2021/02/02 Python
HTML5 canvas实现雪花飘落特效
2016/03/08 HTML / CSS
大学生军训广播稿
2014/01/24 职场文书
《乞巧》教学反思
2014/02/27 职场文书
平面设计求职信
2014/03/10 职场文书
电焊工岗位工作职责
2014/07/09 职场文书
因工资原因离职的辞职信范文
2015/05/12 职场文书