Tensorflow,重做整个脚本时的变量名

时间:2018-12-10 23:51:28

标签: python python-3.x tensorflow

我是tensorflow的新手。创建变量并将其命名后,我发现,如果我在Spyder中多次运行此脚本,则名称将添加为“ _1”,“ _ 2”,如下所示:

import tensorflow as tf

state = tf.Variable(0,name='current')
print(state.name)

然后,如果我运行此脚本3次,我会看到:

current:0
current_1:0  
current_2:0

为什么会这样?谢谢您的帮助。

0 个答案:

没有答案