OWOD/detectron2/engine/__init__.py

13 lines
361 B
Python
Raw Normal View History

2020-09-29 08:17:18 +08:00
# 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 *