mirror of
https://github.com/JDAI-CV/fast-reid.git
synced 2025-06-03 14:50:47 +08:00
14 lines
349 B
Python
14 lines
349 B
Python
# encoding: utf-8
|
|
"""
|
|
@author: liaoxingyu
|
|
@contact: sherlockliao01@gmail.com
|
|
"""
|
|
|
|
from .build import build_backbone, BACKBONE_REGISTRY
|
|
|
|
from .resnet import build_resnet_backbone
|
|
from .osnet import build_osnet_backbone
|
|
from .resnest import build_resnest_backbone
|
|
from .resnext import build_resnext_backbone
|
|
from .regnet import build_regnet_backbone
|