Reduces the input along the dimensions given in axes. Unless keepDims
is true, the rank of the array is reduced by 1 for each entry in axes.
If keepDims is true, the reduced dimensions are retained with length 1.
If axes has no entries, all dimensions are reduced, and an array with a
single element is returned.
constx = tf.tensor1d([1, 2, 3]);
x.min().print(); // or tf.min(x)
constx = tf.tensor2d([1, 2, 3, 4], [2, 2]);
constaxis = 1; x.min(axis).print(); // or tf.min(x, axis)
Computes the minimum value from the input.
Reduces the input along the dimensions given in
axes
. UnlesskeepDims
is true, the rank of the array is reduced by 1 for each entry inaxes
. IfkeepDims
is true, the reduced dimensions are retained with length 1. Ifaxes
has no entries, all dimensions are reduced, and an array with a single element is returned.