2020-06-12 14:40:27 +08:00
|
|
|
from .backbones import * # noqa: F401,F403
|
2020-07-07 19:32:06 +08:00
|
|
|
from .builder import (BACKBONES, CLASSIFIERS, HEADS, LOSSES, NECKS,
|
|
|
|
build_backbone, build_classifier, build_head, build_loss,
|
|
|
|
build_neck)
|
|
|
|
from .classifiers import * # noqa: F401,F403
|
|
|
|
from .heads import * # noqa: F401,F403
|
|
|
|
from .losses import * # noqa: F401,F403
|
|
|
|
from .necks import * # noqa: F401,F403
|
2020-05-21 21:21:43 +08:00
|
|
|
|
2020-07-07 19:32:06 +08:00
|
|
|
__all__ = [
|
|
|
|
'BACKBONES', 'HEADS', 'NECKS', 'LOSSES', 'CLASSIFIERS', 'build_backbone',
|
|
|
|
'build_head', 'build_neck', 'build_loss', 'build_classifier'
|
|
|
|
]
|