GELU#
- class torch.nn.GELU(approximate='none')[source]#
Applies the Gaussian Error Linear Units function.
where is the Cumulative Distribution Function for Gaussian Distribution.
When the approximate argument is ‘tanh’, Gelu is estimated with
- 参数
approximate (str, optional) – the gelu approximation algorithm to use:
'none'
|'tanh'
. Default:'none'
- 形状
Input: , where means any number of dimensions.
Output: , same shape as the input.
示例
>>> m = nn.GELU() >>> input = torch.randn(2) >>> output = m(input)