1、ValueError: Variable v1 already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope? Originally defined at:
解决办法:
在代码前面加上:tf.reset_default_graph()即可。
1、ValueError: Variable v1 already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope? Originally defined at:
解决办法:
在代码前面加上:tf.reset_default_graph()即可。