TensotFlow 应用实例:03-在TensotFlow中使用Variable变量

TensotFlow 应用实例:03-在TensotFlow中使用Variable变量

本文是我在学习TensotFlow 的时候所记录的笔记,共享出来希望能够帮助一些需要的人。

import tensorflow as tf

# tf 中定义变量的时候一定要使用Variable,即只有定义了变量才是变量
# 其中0 初始值, counter 是变量的name
state = tf.Variable(0, name='counter')
# print(state.name)

# 定义一个常量
one = tf.constant(1)

# 使用tf的add方法
new_value = tf.add(state, one)
# 将 new_value 加载到state上
update = tf.assign(state, new_value)

# 初始化变量 初始化所有变量 tf 1.0+
init = tf.global_variables_initializer()

with tf.Session() as sess:
    # 通过run的方式init
    sess.run(init)
    for _ in range(3):
        # 通过run的方式update
        sess.run(update)
        # 通过run的方式才能够输出结果
        print(sess.run(state))



本文代码GitHub地址 tensorflow_learning_notes

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容