pycahrm 의 Expression Evaluator 를 사용해서OmegaConf 타입의 dictionary 디버깅 시 TypeError: get_str() takes 2 positional arguments but 3 were given 에러 발생 이때는 당황하지 않고 OmegaConf 값을 일반 dict로 변환디버깅 과정에서 OmegaConf 객체를 일반 딕셔너리로 변환하여 평가하면 문제를 피할 수 있습니다.OmegaConf.to_container 함수를 사용해서 변환해서 보자!from omegaconf import OmegaConfcfg = OmegaConf.create({"model": {"type": "resnet"}})cfg_dict = OmegaConf.to_container(cfg, re..