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

Optim-wip: Add the CLIP ResNet 50x4 model #927

Open
wants to merge 4 commits into
base: optim-wip
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions captum/optim/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
replace_layers,
skip_layers,
)
from ._image.clip_resnet50x4_image import CLIP_ResNet50x4Image # noqa: F401
from ._image.clip_resnet50x4_image import clip_resnet50x4_image # noqa: F401
from ._image.clip_resnet50x4_text import CLIP_ResNet50x4Text # noqa: F401
from ._image.clip_resnet50x4_text import clip_resnet50x4_text # noqa: F401
from ._image.inception5h_classes import INCEPTION5H_CLASSES # noqa: F401
from ._image.inception_v1 import InceptionV1, googlenet # noqa: F401
from ._image.inception_v1_places365 import ( # noqa: F401
Expand All @@ -16,6 +20,7 @@
INCEPTIONV1_PLACES365_CLASSES,
)


__all__ = [
"RedirectedReluLayer",
"SkipLayer",
Expand All @@ -29,4 +34,8 @@
"InceptionV1Places365",
"googlenet_places365",
"INCEPTIONV1_PLACES365_CLASSES",
"CLIP_ResNet50x4Image",
"clip_resnet50x4_image",
"CLIP_ResNet50x4Text",
"clip_resnet50x4_text",
]
Loading