geak_eval / GEAK-agent_debug /src /args_config.py
llmll's picture
Upload folder using huggingface_hub
02c783d verified
Raw
History Blame Contribute Delete
183 Bytes
import yaml
from argparse import Namespace
def load_config(yaml_path):
with open(yaml_path, 'r') as f:
config_dict = yaml.safe_load(f)
return Namespace(**config_dict)