返回当前变量范围。
用法
tf.compat.v1.get_variable_scope()
迁移到 TF2
警告:这个 API 是为 TensorFlow v1 设计的。继续阅读有关如何从该 API 迁移到本机 TensorFlow v2 等效项的详细信息。见TensorFlow v1 到 TensorFlow v2 迁移指南有关如何迁移其余代码的说明。
虽然它是一个遗留的compat.v1
api,但tf.compat.v1.get_variable
与即刻执行和tf.function
兼容
但是,要维护基于 variable-scope 的变量重用,您需要将其与 tf.compat.v1.keras.utils.track_tf1_style_variables
结合使用。 (尽管它会表现得好像总是将重用设置为 tf.compat.v1.AUTO_REUSE
。)
有关更多信息,请参阅迁移指南。
如果您只是尝试跟踪变量名称前缀而不控制基于 get_variable
的变量重用,则 TF2 等效项将使用 tf.name_scope
并捕获打开范围的输出(表示当前名称前缀)。
例如:
x = tf.name_scope('foo') as current_scope:
...
相关用法
- Python tf.compat.v1.get_variable用法及代码示例
- Python tf.compat.v1.get_local_variable用法及代码示例
- Python tf.compat.v1.get_session_tensor用法及代码示例
- Python tf.compat.v1.get_session_handle用法及代码示例
- Python tf.compat.v1.gfile.Copy用法及代码示例
- Python tf.compat.v1.gather用法及代码示例
- Python tf.compat.v1.gfile.Exists用法及代码示例
- Python tf.compat.v1.gradients用法及代码示例
- Python tf.compat.v1.gfile.FastGFile.close用法及代码示例
- Python tf.compat.v1.gather_nd用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.compat.v1.layers.conv3d用法及代码示例
- Python tf.compat.v1.strings.length用法及代码示例
- Python tf.compat.v1.data.Dataset.snapshot用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.get_variable_scope。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。