diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-04-15 21:47:54 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-04-15 21:47:54 +0200 |
commit | 9ce21f569ecac03f15f2ad669fde3dd4a512f8cc (patch) | |
tree | e6f5bbf4cfe758788fd6ad3679b714d4ecfad568 /text_recognizer/network/convnext | |
parent | a93dcc5b9c8160a441c5b5f99f2f59264778ef91 (diff) |
Format
Diffstat (limited to 'text_recognizer/network/convnext')
-rw-r--r-- | text_recognizer/network/convnext/convnext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/text_recognizer/network/convnext/convnext.py b/text_recognizer/network/convnext/convnext.py index 8eea9df..9d2b3ec 100644 --- a/text_recognizer/network/convnext/convnext.py +++ b/text_recognizer/network/convnext/convnext.py @@ -4,9 +4,9 @@ from typing import Optional, Sequence import torch from torch import Tensor, nn -from .transformer import Transformer from .downsample import Downsample from .norm import LayerNorm +from .transformer import Transformer class GRN(nn.Module): |