omegaconf Questions
4
Solved
Recently I have started to use hydra to manage the configs in my application. I use Structured Configs to create schema for .yaml config files. Structured Configs in Hyda uses dataclasses for type ...
3
Solved
I have a main config file, let's say config.yaml:
num_layers: 4
embedding_size: 512
learning_rate: 0.2
max_steps: 200000
I'd like to be able to override this, on the command-line, with another fil...
2
Solved
I'd like to convert a OmegaConf/Hydra config to a nested dictionary/list. How can I do this?
2
Solved
I'm using hydra to log hyperparameters of experiments.
@hydra.main(config_name="config", config_path="../conf")
def evaluate_experiment(cfg: DictConfig) -> None:
print(Omega...
1
© 2022 - 2024 — McMap. All rights reserved.