blob: dcff3fc772bd1ff49e718316cf419147d120111f (
plain)
1
2
3
4
5
6
7
|
"""Convnext module."""
from text_recognizer.network.convnext.attention import (
Attention,
FeedForward,
TransformerBlock,
)
from text_recognizer.network.convnext.convnext import ConvNext
|