TensorFLow 函数翻译 — tf.square()

tf.square(x, name=None)###


Computes square of x element-wise.

x内的所有元素进行平方操作

I.e., (y = x * x = x^2).

即 (y = x * x = x^2)。

Args:
x: A Tensor or SparseTensor. Must be one of the following types: half, float32, float64, int32, int64, complex64, complex128.
name: A name for the operation (optional).

参数:
x: 一个张量或者是稀疏张量。必须是下列类型之一:half, float32, float64, int32, int64, complex64, complex128.
name: 操作的名字 (可选参数).

Returns:
一个张量或者是稀疏张量。有着跟x相同的类型。

你可能感兴趣的:(TensorFLow 函数翻译 — tf.square())