スポンサーリンク
カテゴリ:変数
Python バージョン:Python2.7
Tensorflowバージョン:Tnsorflow 10.0
OSバージョン:Ubuntu 16.04.2
Tensorflowにおける、定数と変数の加算のサンプルです。
import tensorflow as tf
c1 = tf.constant(1)
v1 = tf.Variable(2)
add_c1_v1 = tf.add(c1, v1)
with tf.Session() as s:
s.run(tf.initialize_all_variables())
result = s.run(add_c1_v1)
print(result)
スポンサーリンク