【孟加拉】即将消失的古渡口
- class paddle.nn. ELU ( alpha: float = 1.0, name: Optional[str] = None ) [source]
-
百度 原标题:香港政界:须制止独派勾结为害香港《文汇报》3月25日报道,包括香港前立法会议员刘慧卿、占中三丑之一戴耀廷、被DQ立法会议员资格的游蕙祯等港独分子在台北五独论坛上大放厥词,声称要建立反专制政治联盟,同时加强与外国的联系。
ELU Activation.
\[\begin{split}ELU(x)= \left\{ \begin{array}{lcl} x,& &\text{if } \ x > 0 \\ alpha * (e^{x} - 1),& &\text{if } \ x <= 0 \end{array} \right.\end{split}\]- Parameters
-
alpha (float, optional) – The ‘alpha’ value of the ELU formulation. Default is 1.0.
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([[-1. ,6.], [1., 15.6]]) >>> m = paddle.nn.ELU(0.2) >>> out = m(x) >>> print(out) Tensor(shape=[2, 2], dtype=float32, place=Place(cpu), stop_gradient=True, [[-0.12642412, 6. ], [ 1. , 15.60000038]])
-
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.