Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GELU activation function #843

Merged
merged 5 commits into from
Feb 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cnn.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ layer = build_norm_layer(cfg, in_channels=3, out_channels=8, kernel_size=3)

- `build_conv_layer`: Supported types are Conv1d, Conv2d, Conv3d, Conv (alias for Conv2d).
- `build_norm_layer`: Supported types are BN1d, BN2d, BN3d, BN (alias for BN2d), SyncBN, GN, LN, IN1d, IN2d, IN3d, IN (alias for IN2d).
- `build_activation_layer`: Supported types are ReLU, LeakyReLU, PReLU, RReLU, ReLU6, ELU, Sigmoid, Tanh.
- `build_activation_layer`: Supported types are ReLU, LeakyReLU, PReLU, RReLU, ReLU6, ELU, Sigmoid, Tanh, GELU.
- `build_upsample_layer`: Supported types are nearest, bilinear, deconv, pixel_shuffle.
- `build_padding_layer`: Supported types are zero, reflect, replicate.

Expand Down
35 changes: 34 additions & 1 deletion mmcv/cnn/bricks/activation.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import torch
import torch.nn as nn
import torch.nn.functional as F

from mmcv.utils import build_from_cfg
from mmcv.utils import TORCH_VERSION, build_from_cfg
from .registry import ACTIVATION_LAYERS

for module in [
Expand Down Expand Up @@ -43,6 +44,38 @@ def forward(self, x):
return torch.clamp(x, min=self.min, max=self.max)


class GELU(nn.Module):
r"""Applies the Gaussian Error Linear Units function:

.. math::
\text{GELU}(x) = x * \Phi(x)
where :math:`\Phi(x)` is the Cumulative Distribution Function for
Gaussian Distribution.

Shape:
- Input: :math:`(N, *)` where `*` means, any number of additional
dimensions
- Output: :math:`(N, *)`, same shape as the input

.. image:: scripts/activation_images/GELU.png

Examples::

>>> m = nn.GELU()
>>> input = torch.randn(2)
>>> output = m(input)
"""

def forward(self, input):
return F.gelu(input)


if TORCH_VERSION == 'parrots' or TORCH_VERSION < '1.4':
ACTIVATION_LAYERS.register_module(module=GELU)
else:
ACTIVATION_LAYERS.register_module(module=nn.GELU)


def build_activation_layer(cfg):
"""Build activation layer.

Expand Down