标签:模块 lse else with 不同 flow 提示 重复 作用
我们在使用tensorflow的时候,当你想复用一个函数的模块,调试时候回提示你变量已经出现,提示你是否重用。那我们当然是不重用的,因为每一个变量都是我们需要的。
要体现不同,就在不同的变量中使用name scope限定,那么其中的重复名字就不会出现问题了。
with tf.name_scope(scope if not name else name):
pass
标签:模块 lse else with 不同 flow 提示 重复 作用
原文地址:https://www.cnblogs.com/demo-deng/p/10213957.html