码迷,mamicode.com
首页 > 其他好文 > 详细

TensorFlow 变量Variable

时间:2018-09-22 17:02:48      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:定义变量   new   imp   counter   sign   sig   run   初始   ESS   

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

标签:定义变量   new   imp   counter   sign   sig   run   初始   ESS   

原文地址:https://www.cnblogs.com/francischeng/p/9690269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!