Skip to content

Commit fc74040

Browse files
authored
Merge 5cfd51b into 084212b
2 parents 084212b + 5cfd51b commit fc74040

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

mmpose/models/__init__.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@
44
build_head, build_loss, build_neck, build_pose_estimator,
55
build_posenet)
66
from .data_preprocessors import * # noqa
7+
from .distillers import * # noqa
78
from .heads import * # noqa
89
from .losses import * # noqa
910
from .necks import * # noqa
1011
from .pose_estimators import * # noqa
1112

1213
__all__ = [
13-
'BACKBONES', 'HEADS', 'NECKS', 'LOSSES', 'build_backbone', 'build_head',
14-
'build_loss', 'build_posenet', 'build_neck', 'build_pose_estimator'
14+
'BACKBONES',
15+
'HEADS',
16+
'NECKS',
17+
'LOSSES',
18+
'build_backbone',
19+
'build_head',
20+
'build_loss',
21+
'build_posenet',
22+
'build_neck',
23+
'build_pose_estimator',
1524
]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (c) OpenMMLab. All rights reserved.
2+
from .dwpose_distiller import DWPoseDistiller
3+
4+
__all__ = ['DWPoseDistiller']
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22
from .bottomup import BottomupPoseEstimator
3-
from .dwpose_distiller import DWPoseDistiller
43
from .pose_lifter import PoseLifter
54
from .topdown import TopdownPoseEstimator
65

7-
__all__ = [
8-
'TopdownPoseEstimator', 'BottomupPoseEstimator', 'PoseLifter',
9-
'DWPoseDistiller'
10-
]
6+
__all__ = ['TopdownPoseEstimator', 'BottomupPoseEstimator', 'PoseLifter']

0 commit comments

Comments
 (0)