fast-reid/fastreid/modeling/meta_arch/__init__.py

16 lines
346 B
Python
Raw Normal View History

2020-02-10 07:38:56 +08:00
# 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
2020-07-06 16:57:43 +08:00
from .mgn import MGN
2021-01-18 11:36:38 +08:00
from .moco import MoCo
from .distiller import Distiller
2021-10-16 22:21:49 +08:00
from .metric import Metric
from .pcb import PCB