You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 252 B

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

No Description