Method: Tensorflow::Math.reduce_max

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

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

def reduce_logsumexp end



318
319
320
321
# File 'lib/tensorflow/ops/math.rb', line 318

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