mirror of https://github.com/JosephKJ/OWOD.git
15 lines
463 B
Python
15 lines
463 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
|
|
|
|
from .build import META_ARCH_REGISTRY, build_model # isort:skip
|
|
|
|
from .panoptic_fpn import PanopticFPN
|
|
|
|
# import all the meta_arch, so they will be registered
|
|
from .rcnn import GeneralizedRCNN, ProposalNetwork
|
|
from .retinanet import RetinaNet
|
|
from .semantic_seg import SEM_SEG_HEADS_REGISTRY, SemanticSegmentor, build_sem_seg_head
|
|
|
|
|
|
__all__ = list(globals().keys())
|