PyTorch
torch / nn / torch.nn
GELU¶
-
class
torch.nn.
GELU
[source]¶ Applies the Gaussian Error Linear Units function:
GELU(x)=x∗Φ(x)where Φ(x) is the Cumulative Distribution Function for Gaussian Distribution.
- Shape:
Input: (N,∗) where * means, any number of additional dimensions
Output: (N,∗) , same shape as the input
Examples:
>>> m = nn.GELU() >>> input = torch.randn(2) >>> output = m(input)
此页内容是否对您有帮助
感谢反馈!