Python – tensorflow.math.minimum()
TensorFlow 是由谷歌设计的开源Python库,用于开发机器学习模型和深度学习神经网络。 minimum()用于查找 x 和 y 的元素最大值。具体来说,它返回 x < y ? x:是的。
Syntax: tf.math.minimum(x, y, name)
Parameter:
- x: It’s the input tensor. Allowed dtype for this tensor are bfloat16, half, float32, float64, int32, int64.
- y: It’s the input tensor of same dtype as x.
- name(optional): It’s defines the name for the operation.
Returns:
It returns a tensor of same dtype as x.
示例 1:
Python3
Python3
输出:
示例 2:
Python3
输出: