标题:为什么会出现重复结果
只看楼主
peizeyu
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2018-11-4
 问题点数:0 回复次数:0 
为什么会出现重复结果
>>> import tensorflow as tf
>>> state = tf.Variable(0, name='counter')
>>> one = tf.constant(1)
>>> new_value = tf.add(state, one)
>>> update = tf.assign(state, new_value)
>>> init = tf.global_variables_initializer()
>>>
>>> with tf.Session() as sess:
...     sess.run(init)
...     for _ in range(3):
...             sess.run(update)
...             print(sess.run(state))


1
1
2
2
3
3
搜索更多相关主题的帖子: 出现 重复 结果 state run 
2018-11-04 22:26



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-490993-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015603 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved