n×mの行列の値をすべて指定した値にする

説明

TensorFlowでn×mの行列の値をすべて指定した値にするにはfill()を使います。fill()の最初のパラメーターに生成する行列の数を指定します。2番目のパラメーターに行列に設定する値を指定します。

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

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.fill([3,5], 999);
ss= tf.Session(config=config)
print(ss.run(a))

実行結果

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