mirror of https://github.com/JDAI-CV/fast-reid.git
12 lines
306 B
Python
12 lines
306 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 |