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

Add DenseNet #36072

Closed
wants to merge 14 commits into from
Prev Previous commit
Next Next commit
Update __init__.py
pokemonjs authored Sep 25, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit adb5cde6840a1c1e2b0de13faa0daf69f5dcc674
8 changes: 4 additions & 4 deletions python/paddle/vision/models/__init__.py
Original file line number Diff line number Diff line change
@@ -28,10 +28,10 @@
from .vgg import vgg16 # noqa: F401
from .vgg import vgg19 # noqa: F401
from .lenet import LeNet # noqa: F401
from .densenet import densenet121 # noqa: F401
from .densenet import densenet161 # noqa: F401
from .densenet import densenet169 # noqa: F401
from .densenet import densenet201 # noqa: F401
from .densenet import densenet121 # noqa: F401
from .densenet import densenet161 # noqa: F401
from .densenet import densenet169 # noqa: F401
from .densenet import densenet201 # noqa: F401

__all__ = [ #noqa
'ResNet',