swish

paddle.fluid.layers. swish ( x, beta=1.0, name=None ) [源代码]

逐元素计算 Swish 激活函数,参考 Searching for Activation Functions

swish - 图1

参数:

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

  • beta (float) - Swish operator 的常量 beta,默认值为 1.0。

  • name (str,可选) – 具体用法请参见 Name ,一般无需设置,默认值为None。

返回:

  • Swish op 的结果,多维 Tensor 或 LoDTensor。数据类型为 float32 或 float64,数据类型以及形状和输入 x 一致。

返回类型:

  • Variable

代码示例:

  1. # 静态图使用
  2. import numpy as np
  3. from paddle import fluid
  4. x = fluid.data(name="x", shape=(-1, 3), dtype="float32")
  5. y = fluid.layers.swish(x, beta=2.0)
  6. place = fluid.CPUPlace()
  7. exe = fluid.Executor(place)
  8. start = fluid.default_startup_program()
  9. main = fluid.default_main_program()
  10. data = np.random.randn(2, 3).astype("float32")
  11. exe.run(start)
  12. y_np, = exe.run(main, feed={"x": data}, fetch_list=[y])
  13. data
  14. # array([[-1.1239197 , 1.3391294 , 0.03921051],
  15. # [ 1.1970421 , 0.02440812, 1.2055548 ]], dtype=float32)
  16. y_np
  17. # array([[-0.2756806 , 1.0610548 , 0.01998957],
  18. # [ 0.9193261 , 0.01235299, 0.9276883 ]], dtype=float32)
  1. # 动态图使用
  2. import numpy as np
  3. from paddle import fluid
  4. import paddle.fluid.dygraph as dg
  5. data = np.random.randn(2, 3).astype("float32")
  6. place = fluid.CPUPlace()
  7. with dg.guard(place) as g:
  8. x = dg.to_variable(data)
  9. y = fluid.layers.swish(x)
  10. y_np = y.numpy()
  11. data
  12. # array([[-0.0816701 , 1.1603649 , -0.88325626],
  13. # [ 0.7522361 , 1.0978601 , 0.12987892]], dtype=float32)
  14. y_np
  15. # array([[-0.03916847, 0.8835007 , -0.25835553],
  16. # [ 0.51126915, 0.82324016, 0.06915068]], dtype=float32)