Rate this Page
★★★★★
CELU#
- classtorch.nn.modules.activation.CELU(alpha=1.0,inplace=False)[source]#
Applies the CELU function element-wise.
More details can be found in the paperContinuously Differentiable Exponential Linear Units .
- Parameters
- Shape:
Input:, where means any number of dimensions.
Output:, same shape as the input.

Examples:
>>>m=nn.CELU()>>>input=torch.randn(2)>>>output=m(input)
On this page