TF:Tensorflow定义变量+常量,实现输出计数功能—Jason niu

#TF:Tensorflow定义变量+常量,实现输出计数功能

import tensorflow as tf

state = tf.Variable(0, name='Parameter_name_counter')
#print(state.name)
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(8):
sess.run(update)
print(sess.run(state))

TF:Tensorflow定义变量+常量,实现输出计数功能—Jason niu

上一篇:【Windows10 IoT开发系列】开发人员模式设置


下一篇:JAVA之旅(一)——基本常识,JAVA概念,开发工具,关键字/标识符,变量/常量,进制/进制转换,运算符,三元运算