当前位置:   article > 正文

Tensorflow中Variable变量_tensorflow.variablefang

tensorflow.variablefang
在Tensorflow中,定义了某字符串变量,它才是变量,这一点与Python不同。定义语法:
sate = tf.Variable()

例子:写一个累加器。

  1. import tensorflow as tf
  2. state = tf.Variable(3, name="counter")
  3. # print(state.name)
  4. # 定义常量one
  5. one = tf.constant(1)
  6. # 定义加法步骤(注:此步骤并没有直接计算)
  7. new_value = tf.add(state , one)
  8. # 将State更新为new_value
  9. update = tf.assign(state,new_value)
  10. # 如果在Tensorflow中定义了变量,那么初始化变量是最重要的,所以定义变量以后一定要定义init = tf.initialize_all_variables()
  11. init = tf.initialize_all_variables() # must have if define variable
  12. with tf.Session() as sess:
  13. # 变量还没有激活,需要在sess里激活init
  14. sess.run(init)
  15. for _ in range(3):
  16. sess.run(update)
  17. print(sess.run(state))

注:如果没有运行成功,请检查编译器能否编译中文字符。若果不能,请把文章注释的中文字符删除。

视频笔记:https://morvanzhou.github.io/tutorials/machine-learning/tensorflow/2-4-variable/

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号