mirror of https://github.com/JDAI-CV/fast-reid.git
18 lines
430 B
Python
18 lines
430 B
Python
# encoding: utf-8
|
|
"""
|
|
@author: liaoxingyu
|
|
@contact: sherlockliao01@gmail.com
|
|
"""
|
|
|
|
from .activation import *
|
|
from .arc_softmax import ArcSoftmax
|
|
from .batch_drop import BatchDrop
|
|
from .batch_norm import *
|
|
from .circle_softmax import CircleSoftmax
|
|
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
|