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

6 lines
252 B
Python

# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
from .build import build_lr_scheduler, build_optimizer
from .lr_scheduler import WarmupCosineLR, WarmupMultiStepLR
__all__ = [k for k in globals().keys() if not k.startswith("_")]