summaryrefslogtreecommitdiff
path: root/text_recognizer/network/convnext/convnext.py
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-04-15 21:47:54 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-04-15 21:47:54 +0200
commit9ce21f569ecac03f15f2ad669fde3dd4a512f8cc (patch)
treee6f5bbf4cfe758788fd6ad3679b714d4ecfad568 /text_recognizer/network/convnext/convnext.py
parenta93dcc5b9c8160a441c5b5f99f2f59264778ef91 (diff)
Format
Diffstat (limited to 'text_recognizer/network/convnext/convnext.py')
-rw-r--r--text_recognizer/network/convnext/convnext.py2
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):