File size: 172 Bytes
fd5e0f7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from omegaconf import OmegaConf

def load_cfg(cfg_path):
    return OmegaConf.load(cfg_path)

def merge_cfgs(cfg1,cfg2):
    cfg = OmegaConf.merge(cfg1,cfg2)
    return cfg