How to make the hydra output directory configurable from configuration?

Viewed 2063

How to make the hydra output directory configurable from configuration?

Like, I'd like to be able to specify the directory that hydra dumps it's hydra.yaml to, instead of it being hardcoded to outputs.

I imagine one way to achieve this could be something like:

  • have an option to instantiate hydra without dumping the config to outputs
  • have a hydra method taht will dump the hydra config to a folder of our choice

Thoughts?

1 Answers

You can override hydra.output_subdir. See this.

Related