tensorflow相关函数___tf.reduce_max()
1、找出最大值import tensorflow as tfmax_value = tf.reduce_max([1, 3, 2])with tf.Session() as sess: max_value = sess.run(max_value) print(max_value) 输出结果:3 2、找出列上的最大值 import tenso...