スポンサーリンク
カテゴリ:定数
Python バージョン:Python2.7
Tensorflowバージョン:Tnsorflow 1.0
OSバージョン:Ubuntu 16.04.2
定数と定数の足し算のサンプルです。
import tensorflow as tf
c1 = tf.constant(1)
c2 = tf.constant(2)
add_c1_c2 = tf.add(c1, c2)
with tf.Session() as s:
result = s.run(add_c1_c2)
print(result)
スポンサーリンク