Skip to content

Commit

Permalink
del __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
DrRyanHuang committed Dec 5, 2022
1 parent 37a6ad1 commit dc0ccc8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion python/paddle/vision/__init__.py
Expand Up @@ -79,7 +79,6 @@
from .models import shufflenet_v2_x1_5 # noqa: F401
from .models import shufflenet_v2_x2_0 # noqa: F401
from .models import shufflenet_v2_swish # noqa: F401
from .models import IntermediateLayerGetter
from .transforms import BaseTransform # noqa: F401
from .transforms import Compose # noqa: F401
from .transforms import Resize # noqa: F401
Expand Down
1 change: 0 additions & 1 deletion python/paddle/vision/models/__init__.py
Expand Up @@ -63,7 +63,6 @@
from .shufflenetv2 import shufflenet_v2_x1_5 # noqa: F401
from .shufflenetv2 import shufflenet_v2_x2_0 # noqa: F401
from .shufflenetv2 import shufflenet_v2_swish # noqa: F401
from ._utils import IntermediateLayerGetter

__all__ = [ # noqa
'ResNet',
Expand Down
2 changes: 0 additions & 2 deletions python/paddle/vision/models/_utils.py
Expand Up @@ -18,8 +18,6 @@
import paddle
import paddle.nn as nn

__all__ = ["IntermediateLayerGetter"]


def _make_divisible(v, divisor=8, min_value=None):
"""
Expand Down

0 comments on commit dc0ccc8

Please sign in to comment.