"test/torchaudio_unittest/backend/legacy_test.py" did not exist on "740c5a860a741d1507174a71fb6e51d6f65d9c41"
__init__.py 377 Bytes
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
2
from .pillar_encoder import DynamicPillarFeatureNet, PillarFeatureNet
3
4
from .voxel_encoder import (DynamicSimpleVFE, DynamicVFE, HardSimpleVFE,
                            HardVFE, SegVFE)
zhangwenwei's avatar
zhangwenwei committed
5
6

__all__ = [
7
    'PillarFeatureNet', 'DynamicPillarFeatureNet', 'HardVFE', 'DynamicVFE',
8
    'HardSimpleVFE', 'DynamicSimpleVFE', 'SegVFE'
zhangwenwei's avatar
zhangwenwei committed
9
]