fast-reid/fastreid/layers/__init__.py

16 lines
380 B
Python
Raw Normal View History

2020-02-10 07:38:56 +08:00
# encoding: utf-8
"""
@author: liaoxingyu
@contact: sherlockliao01@gmail.com
"""
from .activation import *
2020-02-10 07:38:56 +08:00
from .batch_drop import BatchDrop
2020-05-14 11:36:28 +08:00
from .batch_norm import *
2020-03-25 10:58:26 +08:00
from .context_block import ContextBlock
from .frn import FRN, TLU
from .non_local import Non_local
from .se_layer import SELayer
from .splat import SplAtConv2d, DropBlock2D
from .gather_layer import GatherLayer