函数原型
tf.less_equal(
x, y, name=None
)
函数说明
如果张量x中的某一元素a的值小于等于张量y中相对应的元素b的值,则返回的结果对应的位置值为True,否则就是False。
函数使用
1、一维张量的比较
>>> x = tf.ones(4)
>>> x
<tf.Tensor: shape=(4,), dtype=float32, numpy=array([1., 1., 1., 1.], dtype=float32)>
>>> y = tf.zeros(4)
>>> y
<tf.Tensor: shape=(4,), dtype=float32, numpy=array([0., 0., 0., 0.], dtype=float32)>
>>> tf.less_equal(x, y)
<tf.Tensor: shape=(4,), dtype=bool, numpy=array([False, False, False, False])>
2、二维张量的比较
>>> x = tf.ones((2, 2))
>>> x
<tf.Tensor: shape=(2, 2), dtype=float32, numpy=
array([[1., 1.],
[1., 1.]], dtype=float32)>
>>> y = tf.constant([[0, 0], [2, 2]], dtype=x.dtype)
>>> y
<tf.Tensor: shape=(2, 2), dtype=float32, numpy=
array([[0., 0.],
[2., 2.]], dtype=float32)>
>>> tf.less_equal(x, y)
<tf.Tensor: shape=(2, 2), dtype=bool, numpy=
array([[False, False],
[ True, True]])>