美文网首页
TensorFLow 函数翻译 — tf.square()

TensorFLow 函数翻译 — tf.square()

作者: HabileBadger | 来源:发表于2016-12-24 19:20 被阅读4651次

    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()

          本文链接:https://www.haomeiwen.com/subject/ostrvttx.html