Spaces:
Runtime error
Runtime error
File size: 943 Bytes
2366e36 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# ------------------------------------------------------------------------------
# Adapted from https://github.com/lonePatient/BERT-NER-Pytorch
# Original licence: Copyright (c) 2020 Weitang Liu, under the MIT License.
# ------------------------------------------------------------------------------
import math
import torch
import torch.nn as nn
from mmocr.models.builder import ACTIVATION_LAYERS
@ACTIVATION_LAYERS.register_module()
class GeluNew(nn.Module):
"""Implementation of the gelu activation function currently in Google Bert
repo (identical to OpenAI GPT).
Also see https://arxiv.org/abs/1606.08415
"""
def forward(self, x):
"""Forward function.
Args:
x (torch.Tensor): The input tensor.
Returns:
torch.Tensor: Activated tensor.
"""
return 0.5 * x * (1 + torch.tanh(
math.sqrt(2 / math.pi) * (x + 0.044715 * torch.pow(x, 3))))
|