fast-reid/fastreid/layers/__init__.py

20 lines
517 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-07-17 19:13:45 +08:00
from .arc_softmax import ArcSoftmax
from .circle_softmax import CircleSoftmax
from .cos_softmax import CosSoftmax
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 .pooling import *
from .se_layer import SELayer
from .splat import SplAtConv2d, DropBlock2D
from .gather_layer import GatherLayer