首页 > 其他分享 >tf.variable_scope()

tf.variable_scope()

时间:2022-11-03 15:34:39浏览次数:55  
标签:管理器 变量 创建 variable tf scope

tf.variable_scope(): 可以让变量有相同的命名,包括tf.get_variable得到的变量,还有tf.Variable变量

它返回的是一个用于定义创建variable(层)的op的上下文管理器。

可变范围允许创建新的variable并分享已创建的variable,同时提供检查,不会意外创建或共享。

 

标签:管理器,变量,创建,variable,tf,scope
From: https://www.cnblogs.com/bokeyuanjj/p/16854585.html

相关文章