mirror of https://github.com/JDAI-CV/fast-reid.git
13 lines
310 B
Python
13 lines
310 B
Python
# encoding: utf-8
|
|
"""
|
|
@author: liaoxingyu
|
|
@contact: sherlockliao01@gmail.com
|
|
"""
|
|
|
|
from .build import REID_HEADS_REGISTRY, build_reid_heads
|
|
|
|
# import all the meta_arch, so they will be registered
|
|
from .linear_head import LinearHead
|
|
from .bnneck_head import BNneckHead
|
|
from .reduction_head import ReductionHead
|