diff options
Diffstat (limited to 'text_recognizer/networks/convnext/residual.py')
-rw-r--r-- | text_recognizer/networks/convnext/residual.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/text_recognizer/networks/convnext/residual.py b/text_recognizer/networks/convnext/residual.py deleted file mode 100644 index dfc2847..0000000 --- a/text_recognizer/networks/convnext/residual.py +++ /dev/null @@ -1,16 +0,0 @@ -"""Generic residual layer.""" -from typing import Callable - -from torch import Tensor, nn - - -class Residual(nn.Module): - """Residual layer.""" - - def __init__(self, fn: Callable) -> None: - super().__init__() - self.fn = fn - - def forward(self, x: Tensor) -> Tensor: - """Applies residual fn.""" - return self.fn(x) + x |