割り算の余りを求める

説明

TensorFlowで割り算の余りを求めるにはmod()を使います。mod()には割られる数と割る数を指定します。

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

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(60)
b = tf.constant(7)
c = tf.mod(a,b)
ss= tf.Session(config=config)
print(ss.run(c))

実行結果

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