Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] add model script of cait #547

Merged
merged 1 commit into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mindcv/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""models init"""
from . import (
bit,
cait,
coat,
convit,
convnext,
Expand Down Expand Up @@ -49,6 +50,7 @@
xcit,
)
from .bit import *
from .cait import *
from .coat import *
from .convit import *
from .convnext import *
Expand Down Expand Up @@ -101,6 +103,7 @@
# we cannot use net.__all__, so we manually copy net.__all__ here.
__all__ = []
__all__.extend(bit.__all__)
__all__.extend(cait.__all__)
__all__.extend(coat.__all__)
__all__.extend(convit.__all__)
__all__.extend(convnext.__all__)
Expand Down
Loading