mirror of https://github.com/JDAI-CV/fast-reid.git
18 lines
381 B
Python
18 lines
381 B
Python
# encoding: utf-8
|
|
"""
|
|
@author: liaoxingyu
|
|
@contact: sherlockliao01@gmail.com
|
|
"""
|
|
|
|
from .build import META_ARCH_REGISTRY, build_model
|
|
|
|
|
|
# import all the meta_arch, so they will be registered
|
|
from .baseline import Baseline
|
|
from .mgn import MGN
|
|
from .moco import MoCo
|
|
from .distiller import Distiller
|
|
from .metric import Metric
|
|
from .pcb import PCB
|
|
from .pcb_online import PcbOnline
|