TensorFlow 变量Variable

Posted francischeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow 变量Variable相关的知识,希望对你有一定的参考价值。

import tensorflow as tf

state = tf.Variable(0, name=counter)  # 定义了名字是counter,初始值为0的计数器
print(state.name)

one = tf.constant(1)
new_value = tf.add(state, one)
update = tf.assign(state, new_value)
print(new_value)

init = tf.initialize_all_variables()    # 在tf中定义变量Variable 一定要初始化

with tf.Session() as sess:
    sess.run(init)        #一定要run(init)
    for _ in range(3):
        sess.run(update)
        print(sess.run(state))

 

以上是关于TensorFlow 变量Variable的主要内容,如果未能解决你的问题,请参考以下文章

TensorFlow代码初识

TensorFlow 变量Variable

tensorflow中命名空间变量命名的问题

TensorFlow中Variable和get_variable的区别

TensorFlow进阶---名称域和共享变量

tensorflow里面共享变量name_scope, variable_scope等如何理解