博客
关于我
tensorflow的variable scope和name scope
阅读量:271 次
发布时间:2019-03-01

本文共 1512 字,大约阅读时间需要 5 分钟。

在TensorFlow中,变量共享机制通过variable_scopename_scope实现,无需传递引用即可在不同代码块共享变量。这种机制的核心在于tf.get_variable函数,它允许在不同的代码块中创建或检索变量。值得注意的是,tf.get_variabletf.Variable存在显著区别:后者会在每次创建时生成新的变量,并在名称中自动添加后缀以区分不同的实例。

在使用tf.get_variable创建变量或检索现有变量时,name_scope会被忽略。这意味着即使在不同的tf.variable_scope中创建变量,它们的命名空间仍会根据variable_scope的设置进行调整。以下代码示例展示了这一点:

import tensorflow as tfwith tf.name_scope('test_scope'):    test1 = tf.get_variable('test1', [1], dtype=tf.float32)    test2 = tf.Variable(1, name='test2', dtype=tf.float32)    a = tf.add(test1, test2)    print(test1.name)  # test_scope/test1:0    print(test2.name)  # test_scope/test2:0    print(a.name)      # test_scope/Add:0

然而,如果希望通过tf.get_variable创建的变量能够在其他代码块中被访问,需要使用tf.variable_scope。这样可以确保变量在不同代码块中共享:

import tensorflow as tfwith tf.variable_scope('test_scope'):    test1 = tf.get_variable('test1', [1], dtype=tf.float32)    test2 = tf.Variable(1, name='test2', dtype=tf.float32)    a = tf.add(test1, test2)    print(test1.name)  # test_scope/test1:0    print(test2.name)  # test_scope/test2:0    print(a.name)      # test_scope/Add:0

此外,tf.variable_scope还支持reuse参数。当reuse=True时,变量会在同一个scope中被多次使用,而name_scope则会被忽略:

import tensorflow as tfwith tf.variable_scope('share'):    share = tf.get_variable('share_variable', [1])with tf.variable_scope('share', reuse=True):    share_test = tf.get_variable('share_variable', [1])    print(share.name)        # share/share_variable:0    print(share_test.name)   # share/share_variable:0

通过上述方法,可以有效地在TensorFlow中管理变量的共享和命名,确保变量在不同代码块中能够被正确访问和使用。

转载地址:http://vrvx.baihongyu.com/

你可能感兴趣的文章
python 利用pyspark读取HDFS中CSV文件的指定列 列名重命名 并保存回HDFS
查看>>
python 利用pyttsx3文字转语音
查看>>
python 利用已有Ner模型进行数据清洗合并
查看>>
python 到大数据开发工程师_如何成为一个大数据开发工程师?
查看>>
python 加密解密(base64, AES)
查看>>
Python 包管理器和 Node.js
查看>>
Python 单词字母顺序不变且所有倒排
查看>>
python 反射机制
查看>>
python 启动提示IDLE's subprocess didn't make conne...
查看>>
python 命令接口_实现“[命令][操作][参数]”样式的命令行接口?
查看>>
Python 和 OpenCV.如何检测图像中的所有(填充)圆形/圆形对象?
查看>>
Python 和 RabbitMQ - 聆听来自多个渠道的消费事件的最佳方式?
查看>>
python编辑器打不开_关于命令ride.py打不开RF,而是打开pycharm编辑器问题解决思路...
查看>>
python编译exe同时支持32位_第三周:同时管理64位和32位版本的Python,并用Pyinstaller打包成exe...
查看>>
Python 和Java 哪个更适合做自动化测试?
查看>>
Python编程:掌握高级语言程序设计。从零基础到精通,收藏这篇就够了!
查看>>
python 图片转ico
查看>>
python 图片转文字、语音转文字、文字转语音保存音频并朗读
查看>>
python 在包含类似字符\x16、\x12、\x某某的数组中将以\x开头的字符找出来的方法
查看>>
Python 在并行进程之间共享字典
查看>>