mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [Feature] Add BEiT backbone * fix * fix * fix * fix * add readme * fix * fix * fix * fix * fix * add link * fix memory * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix test_beit.py * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
12 lines
326 B
Python
12 lines
326 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .featurepyramid import Feature2Pyramid
|
|
from .fpn import FPN
|
|
from .ic_neck import ICNeck
|
|
from .jpu import JPU
|
|
from .mla_neck import MLANeck
|
|
from .multilevel_neck import MultiLevelNeck
|
|
|
|
__all__ = [
|
|
'FPN', 'MultiLevelNeck', 'MLANeck', 'ICNeck', 'JPU', 'Feature2Pyramid'
|
|
]
|