jax.lax.reduce_min#

jax.lax.reduce_min(operand, axes)[source]#

计算一个或多个数组轴上的元素的最小值。

参数:
  • operand (ArrayLike) – 要计算最小值的数组。

  • axes (Sequence[int]) – 指定要缩减的轴的零个或多个唯一整数的序列。每个条目必须满足 0 <= axis < operand.ndim

返回:

operand 具有相同 dtype 的数组,其形状对应于 operand.shape 的维度,并移除了 axes

返回类型:

Array

参见