1
0
mirror of https://github.com/RE-OWOD/RE-OWOD.git synced 2025-06-03 14:59:31 +08:00
RE-OWOD/detectron2/engine/__init__.py
2022-01-04 13:29:28 +08:00

13 lines
361 B
Python

# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
from .launch import *
from .train_loop import *
__all__ = [k for k in globals().keys() if not k.startswith("_")]
# prefer to let hooks and defaults live in separate namespaces (therefore not in __all__)
# but still make them available here
from .hooks import *
from .defaults import *