1
0
mirror of https://github.com/alibaba/EasyCV.git synced 2025-06-03 14:49:00 +08:00

8 lines
202 B
Python
Raw Normal View History

from easycv.utils.registry import Registry, build_from_cfg
OPTIMIZER_BUILDERS = Registry('optimizer builder')
def build_optimizer_constructor(cfg):
return build_from_cfg(cfg, OPTIMIZER_BUILDERS)