tf.math.greater

2022-09-04 20:52:23 浏览数 (1)

返回元素(x > y)的真值。

代码语言:javascript复制
tf.math.greater(
    x,
    y,
    name=None
)

参数:

  • x: 张量。必须是下列类型之一:float32、float64、int32、uint8、int16、int8、int64、bfloat16、uint16、half、uint32、uint64。
  • y: 张量。必须具有与x相同的类型。
  • name: 操作的名称(可选)。

返回值:

  • bool类型的张量。

原链接: https://tensorflow.google.cn/versions/r2.0/api_docs/python/tf/math/greater?hl=en

0 人点赞