Example #1
0
def build_dataset(config):
    return build_from_config(DATASETS, config)
Example #2
0
def build_lr_scheduler(config):
    return build_from_config(LR_SCHEDULERS, config)
Example #3
0
def build_collate(config):
    return build_from_config(COLLATES, config)
Example #4
0
def build_optimizer(config):
    return build_from_config(OPTIMIZERS, config)