Method: Tensorflow::Math.reduce_min

Defined in:
lib/tensorflow/ops/math.rb

.reduce_min(input, axis: nil, keepdims: false, dtype: nil) ⇒ Object



328
329
330
331
# File 'lib/tensorflow/ops/math.rb', line 328

def reduce_min(input, axis: nil, keepdims: false, dtype: nil)
  axis ||= reduction_dims(input, dtype: dtype)
  RawOps.min(input, axis, keep_dims: keepdims, typeT: dtype)
end