Tensorflow get_variable和Varialbe的区别

Posted weiyinfu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tensorflow get_variable和Varialbe的区别相关的知识,希望对你有一定的参考价值。

import tensorflow as tf

"""
tf.get_variable()和Variable有很多不同点
* 它们对重名操作的处理不同
* 它们受name_scope的影响不同
"""
a = tf.Variable(3, name="a")
b = tf.Variable(3, name="a")
print(a.name, b.name)  # a:0 a_1:0

try:
    a = tf.get_variable("b", initializer=tf.constant_initializer(3), shape=1)
    b = tf.get_variable("b", initializer=tf.constant_initializer(3), shape=1)  # Variable b already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope?
except Exception as ex:
    print(ex)

以上是关于Tensorflow get_variable和Varialbe的区别的主要内容,如果未能解决你的问题,请参考以下文章

如何在 TensorFlow 中使用 tf.get_variable 和 numpy 值初始化变量?

Tensorflow的最佳实践

tensorflow中使用tf.variable_scope和tf.get_variable的ValueError

tensorflow中一个tensor怎么转化成tf.get_variable格式

tensorflow:Googletensorflow入门

tensorflow中命名空间变量命名的问题