summaryrefslogtreecommitdiff
path: root/text_recognizer/networks/conformer/glu.py
diff options
context:
space:
mode:
Diffstat (limited to 'text_recognizer/networks/conformer/glu.py')
-rw-r--r--text_recognizer/networks/conformer/glu.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/text_recognizer/networks/conformer/glu.py b/text_recognizer/networks/conformer/glu.py
deleted file mode 100644
index 1a7c201..0000000
--- a/text_recognizer/networks/conformer/glu.py
+++ /dev/null
@@ -1,12 +0,0 @@
-"""GLU layer."""
-from torch import nn, Tensor
-
-
-class GLU(nn.Module):
- def __init__(self, dim: int) -> None:
- super().__init__()
- self.dim = dim
-
- def forward(self, x: Tensor) -> Tensor:
- out, gate = x.chunk(2, dim=self.dim)
- return out * gate.sigmoid()