__init__.py 291 Bytes
Newer Older
luopl's avatar
init  
luopl committed
1
2
3
4
5
6
7
8
from .cosine_lr import CosineLRScheduler
from .multistep_lr import MultiStepLRScheduler
from .plateau_lr import PlateauLRScheduler
from .poly_lr import PolyLRScheduler
from .step_lr import StepLRScheduler
from .tanh_lr import TanhLRScheduler

from .scheduler_factory import create_scheduler