mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
11 lines
394 B
Python
11 lines
394 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
from .cat_aggregator import (AggregatorLayer, CATSegAggregator,
|
||
|
ClassAggregateLayer, SpatialAggregateLayer)
|
||
|
from .cat_head import CATSegHead
|
||
|
from .clip_ovseg import CLIPOVCATSeg
|
||
|
|
||
|
__all__ = [
|
||
|
'AggregatorLayer', 'CATSegAggregator', 'ClassAggregateLayer',
|
||
|
'SpatialAggregateLayer', 'CATSegHead', 'CLIPOVCATSeg'
|
||
|
]
|