???粿??2017?????44??????????????????????Χ

class paddle.nn. Softshrink ( threshold: float = 0.5, name: Optional[str] = None ) [source]
百度 那么中央政治局同志在履新的这半年中,是如何发挥示范带头作用的?从中央政治局同志的述职报告所涵盖的内容上来看,主要涉及7个带头:带头增强四个意识;带头学习宣传贯彻习近平新时代中国特色社会主义思想和党的十九大精神;带头落实重大问题请示报告制度;带头贯彻执行民主集中制;带头推动党中央决策部署贯彻落实;带头开展调查研究、深入改进作风;带头廉洁自律。

Softshrink Activation

\[\begin{split}Softshrink(x)= \left\{ \begin{array}{rcl} x - threshold,& & \text{if } x > threshold \\ x + threshold,& & \text{if } x < -threshold \\ 0,& & \text{otherwise} \end{array} \right.\end{split}\]
Parameters
  • threshold (float, optional) – The value of threshold(must be no less than zero) for softplus. Default is 0.5

  • name (str|None, optional) – Name for the operation (optional, default is None). For more information, please refer to Name.

Shape:
  • input: Tensor with any shape.

  • output: Tensor with the same shape as input.

Examples

>>> import paddle

>>> x = paddle.to_tensor([-0.9, -0.2, 0.1, 0.8])
>>> m = paddle.nn.Softshrink()
>>> out = m(x)
>>> print(out)
Tensor(shape=[4], dtype=float32, place=Place(cpu), stop_gradient=True,
[-0.39999998,  0.        ,  0.        ,  0.30000001])
forward ( x: Tensor ) Tensor

forward?

Defines the computation performed at every call. Should be overridden by all subclasses.

Parameters
  • *inputs (tuple) – unpacked tuple arguments

  • **kwargs (dict) – unpacked dict arguments

extra_repr ( ) str

extra_repr?

Extra representation of this layer, you can have custom implementation of your own layer.