tf.AUTO_REUSE

Posted Z-Pilgrim

tags:

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

通过get_variable("v")函数获取变量时,如果tf.variable_scope的reuse参数是True, 如果v是已经被创建过了就直接返回,但是如果没有创建会报错。如果设置成False,变量v如果没有被创建过就直接创建,如果创建过就报错。

AUTO_REUSE的好处就是实现:

如果创建过就返回,没有创建过就创建一个新的变量返回

AUTO_REUSE.__doc__ = """
When passed in as the value for the `reuse` flag, AUTO_REUSE indicates that
get_variable() should create the requested variable if it doesn't exist or, if
it does exist, simply return it.
"""

 

 

以上是关于tf.AUTO_REUSE的主要内容,如果未能解决你的问题,请参考以下文章