Skip to content

Optim-wip: Add the pre-trained InceptionV1 Places365 model #655

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

Closed
9 changes: 9 additions & 0 deletions captum/optim/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
)
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
InceptionV1Places365,
googlenet_places365,
)
from ._image.inception_v1_places365_classes import ( # noqa: F401
INCEPTIONV1_PLACES365_CLASSES,
)

__all__ = [
"RedirectedReluLayer",
Expand All @@ -19,4 +26,6 @@
"InceptionV1",
"googlenet",
"INCEPTION5H_CLASSES",
"googlenet_places365",
"INCEPTIONV1_PLACES365_CLASSES",
]
Loading