数値を加算する

説明

TensorFlowで数値同士を加算する(足し算する)にはadd()を使います。add()には足す数と足される数を指定します。

サンプルプログラム [サンプルをダウンロード]

import tensorflow as tf
import multiprocessing as mp
core_num = mp.cpu_count()
config = tf.ConfigProto(
  inter_op_parallelism_threads=core_num,
  intra_op_parallelism_threads=core_num )
a = tf.constant(59)
b = tf.constant(63)
c = tf.add(a,b)
ss= tf.Session(config=config)
print(ss.run(c))

実行結果

TensorFlowを使ったプログラムの実行結果