代码语言:javascript复制
tf.math.less_equal(
x,
y,
name=None
)
返回元素的真值(x <= y)。
参数:
- x: 张量。必须是下列类型之一:float32、float64、int32、uint8、int16、int8、int64、bfloat16、uint16、half、uint32、uint64。
- y: 张量。必须具有与x相同的类型。
- name: 操作的名称(可选)。
返回值:
- bool类型的张量。
原链接: https://tensorflow.google.cn/versions/r1.14/api_docs/python/tf/math/less_equal