thresholded_relu

    逐元素计算 ThresholdedRelu激活函数。

    • x (Variable) -ThresholdedRelu Op 的输入,多维 Tensor 或 LoDTensor,数据类型为 float32,float64。

    • threshold (float,可选)-激活函数的 threshold 值,如 threshold 值为 None,则其值为 1.0。

    • 多维 Tensor 或 LoDTensor, 数据类型为 float32 或 float64, 和输入 x 的数据类型相同,形状和输入 x 相同。

    返回类型:

    • Variable

    代码示例

    1. import numpy as np
    2. import paddle.fluid.dygraph as dg
    3. place = fluid.CPUPlace()
    4. with dg.guard(place) as g:
    5. x = dg.to_variable(data)
    6. data
    7. # array([[ 0.21134382, -1.1805999 , 0.32876605],
    8. # [-1.2210793 , -0.7365624 , 1.0013918 ]], dtype=float32)
    9. y_np