EasyCV/easycv/models/registry.py
Chen Jiayu 0b472bacf1
refactor detection, support detr and dab-detr (#104)
refactor detection, support detr and dab-detr
2022-07-11 14:52:49 +08:00

9 lines
230 B
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
from easycv.utils.registry import Registry
MODELS = Registry('model')
BACKBONES = Registry('backbone')
NECKS = Registry('neck')
HEADS = Registry('head')
LOSSES = Registry('loss')