gpt4 book ai didi

python - 从 python 文件在 hydra DictConfig 中创建一个新 key

转载 作者:行者123 更新时间:2023-12-04 12:34:07 38 4
gpt4 key购买 nike

我想在加载 Hydra 配置后添加一个键 + 值。基本上我想运行我的代码并检查 gpu 是否可用。如果是,则将设备记录为 gpu,否则保留 cpu。
基本上保存了以下输出:

torch.cuda.is_available()
当我尝试添加带有“setdefault”的键时:
@hydra.main(config_path="conf", config_name="config")
def my_app(cfg: DictConfig) -> None:
cfg.setdefault("new_key", "new_value")
如果我做同样的错误:
  cfg.new_key = "new_value"
print(cfg.new_key)
我收到错误:
omegaconf.errors.ConfigKeyError: Key 'new_key' is not in struct
full_key: new_key
reference_type=Optional[Dict[Union[str, Enum], Any]]
object_type=dict
我目前的解决方法是只使用 OmegaConfig:
  cfg = OmegaConf.structured(OmegaConf.to_yaml(cfg))
cfg.new_key = "new_value"
print(cfg.new_key)
>>>> new_value
当然必须有更好的方法来做到这一点?

最佳答案

Hydra 在它生成的 OmegaConf 配置对象的根上设置结构标志。
this有关结构标志的更多信息。
您可以使用 open_dict() 暂时禁用此功能并允许添加新 key :

>>> from omegaconf import OmegaConf,open_dict
>>> conf = OmegaConf.create({"a": {"aa": 10, "bb": 20}})
>>> OmegaConf.set_struct(conf, True)
>>> with open_dict(conf):
... conf.a.cc = 30
>>> conf.a.cc
30

关于python - 从 python 文件在 hydra DictConfig 中创建一个新 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66295334/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com