1. 程式人生 > >tf.squared_difference函式

tf.squared_difference函式

tf.squared_difference函式

From: https://www.w3cschool.cn/tensorflow_python/tensorflow_python-o6al2mig.html

squared_difference(
    x,
    y,
    name=None
)

請參閱指南:數學>基本數學函式

返回(x - y)(x - y)元素。

注意:SquaredDifference 支援廣播。

函式引數:

  • x:為一個 Tensor;必須是下列型別之一:half,bfloat16,float32,float64,int32,int64,complex64 或者 complex128。
  • y:為一個 Tensor;必須與 x 具有相同的型別。
  • name:操作的名稱(可選)。

函式返回值:

tf.squared_difference函式返回一個 Tensor,它與 x 具有相同的型別。