2つのテンソルの差分を取る

説明

TensorFlowで2つのテンソルの差分を取るにはlistdiff()を使います。listdiff()の最初と2番目のパラメーターに値や行列を指定します。戻り値はTensorオブジェクトのタプルになります。

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

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.listdiff([1, 2, 4, 8, 12], [1, 4, 16, 32])
ss= tf.Session(config=config)
print(ss.run(a))

実行結果

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