mirror of https://github.com/alibaba/EasyCV.git
6 lines
189 B
Python
6 lines
189 B
Python
|
from .base import Base3DDetector
|
||
|
from .bevformer.bevformer import BEVFormer
|
||
|
from .mvx_two_stage import MVXTwoStageDetector
|
||
|
|
||
|
__all__ = ['BEVFormer', 'Base3DDetector', 'MVXTwoStageDetector']
|