GELU¶
-
class
torch.nn.
GELU
[source]¶ Applies the Gaussian Error Linear Units function:
where is the Cumulative Distribution Function for Gaussian Distribution.
- Shape:
Input: where * means, any number of additional dimensions
Output: , same shape as the input
Examples:
>>> m = nn.GELU() >>> input = torch.randn(2) >>> output = m(input)