fast-reid/fastreid/modeling/__init__.py

24 lines
422 B
Python
Raw Normal View History

2020-02-10 07:38:56 +08:00
# encoding: utf-8
"""
@author: sherlock
@contact: sherlockliao01@gmail.com
"""
2021-01-22 21:11:19 +08:00
from . import losses
from .backbones import (
BACKBONE_REGISTRY,
build_resnet_backbone,
build_backbone,
)
from .heads import (
REID_HEADS_REGISTRY,
build_heads,
EmbeddingHead,
)
from .meta_arch import (
build_model,
META_ARCH_REGISTRY,
)
__all__ = [k for k in globals().keys() if k not in k.startswith("_")]