add autodl
This commit is contained in:
36
AutoDL-Projects/xautodl/xmisc/__init__.py
Normal file
36
AutoDL-Projects/xautodl/xmisc/__init__.py
Normal file
@@ -0,0 +1,36 @@
|
||||
#####################################################
|
||||
# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.06 #
|
||||
#####################################################
|
||||
"""The module and yaml related functions."""
|
||||
from .module_utils import call_by_dict
|
||||
from .module_utils import call_by_yaml
|
||||
from .module_utils import nested_call_by_dict
|
||||
from .module_utils import nested_call_by_yaml
|
||||
from .yaml_utils import load_yaml
|
||||
|
||||
from .torch_utils import count_parameters
|
||||
|
||||
from .logger_utils import Logger
|
||||
|
||||
"""The data sampler related classes."""
|
||||
from .sampler_utils import BatchSampler
|
||||
|
||||
"""The meter related classes."""
|
||||
from .meter_utils import AverageMeter
|
||||
|
||||
"""The scheduler related classes."""
|
||||
from .scheduler_utils import CosineParamScheduler, WarmupParamScheduler, LRMultiplier
|
||||
|
||||
|
||||
def get_scheduler(indicator, lr):
|
||||
if indicator == "warm-cos":
|
||||
multiplier = WarmupParamScheduler(
|
||||
CosineParamScheduler(lr, lr * 1e-3),
|
||||
warmup_factor=0.001,
|
||||
warmup_length=0.05,
|
||||
warmup_method="linear",
|
||||
)
|
||||
|
||||
else:
|
||||
raise ValueError("Unknown indicator: {:}".format(indicator))
|
||||
return multiplier
|
Reference in New Issue
Block a user