关于tf.name_scope和tf.variable_scope的使用
来源:4-6 Inception-mobile_net(1)
Genpeng
2019-03-31
老师:
您好!
什么时候应该使用 tf.name_scope,什么时候又应该使用 tf.variable_scope ?
写回答
1回答
-
正十七
2019-04-09
同学你好,其实他们的区别不大,主要在于如何实现变量共享,tf.name_scope会影响tf.Variable但不能影响tf.get_variable, 所以如果要使用tf.get_variable,那么必须用tf.variable_scope。具体细节可以参考:
https://blog.csdn.net/randompeople/article/details/86547941
http://www.voidcn.com/article/p-pwuxrxia-brt.html
10
相似问题