We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaaaec6 commit 59fbcd8Copy full SHA for 59fbcd8
mindcv/models/__init__.py
@@ -1,6 +1,7 @@
1
"""models init"""
2
from . import (
3
bit,
4
+ cait,
5
coat,
6
convit,
7
convnext,
@@ -49,6 +50,7 @@
49
50
xcit,
51
)
52
from .bit import *
53
+from .cait import *
54
from .coat import *
55
from .convit import *
56
from .convnext import *
@@ -101,6 +103,7 @@
101
103
# we cannot use net.__all__, so we manually copy net.__all__ here.
102
104
__all__ = []
105
__all__.extend(bit.__all__)
106
+__all__.extend(cait.__all__)
107
__all__.extend(coat.__all__)
108
__all__.extend(convit.__all__)
109
__all__.extend(convnext.__all__)
0 commit comments