mirror of https://github.com/JDAI-CV/fast-reid.git
13 lines
278 B
Python
13 lines
278 B
Python
|
# encoding: utf-8
|
||
|
"""
|
||
|
@author: liaoxingyu
|
||
|
@contact: sherlockliao01@gmail.com
|
||
|
"""
|
||
|
|
||
|
|
||
|
from .context_block import ContextBlock
|
||
|
from .batch_drop import BatchDrop
|
||
|
from .batch_norm import bn_no_bias
|
||
|
from .pooling import GeM
|
||
|
from .frn import FRN, TLU
|
||
|
from .classifier import ClassBlock
|