Output/Working directory
Hydra solves the problem of your needing to specify a new output directory for each run, by creating a directory for each run and executing your code within that working directory.
The working directory is used to:
- Store the output for the application (For example, a database dump file)
- Store the Hydra output for the run (Configuration, Logs etc)
Every time you run the app, a new working directory is created:
Python file: my_app.py
import os
import hydra
from omegaconf import DictConfig
@hydra.main()
def my_app(cfg: DictConfig) -> None:
print("Working directory : {}".format(os.getcwd()))
$ python my_app.py
Working directory : /home/omry/dev/hydra/outputs/2019-09-25/15-16-17
$ python my_app.py
Working directory : /home/omry/dev/hydra/outputs/2019-09-25/15-16-19
Let's take a look at one of the working directories:
$ tree outputs/2019-09-25/15-16-17
outputs/2019-09-25/15-16-17
βββ .hydra
β βββ config.yaml
β βββ hydra.yaml
β βββ overrides.yaml
βββ my_app.log
We have the Hydra output directory (.hydra by default), and the application log file.
Inside the Hydra output directory we have:
config.yaml: A dump of the user specified configurationhydra.yaml: A dump of the Hydra configurationoverrides.yaml: The command line overrides used
And in the main output directory:
my_app.log: A log file created for this run
Changing or disabling the output subdirβ
You can change the .hydra subdirectory name by overriding hydra.output_subdir.
You can disable its creation by overriding hydra.output_subdir to null.
Original working directoryβ
You can still access the original working directory via get_original_cwd() and to_absolute_path() in hydra.utils:
from hydra.utils import get_original_cwd, to_absolute_path
@hydra.main()
def my_app(_cfg: DictConfig) -> None:
print(f"Current working directory : {os.getcwd()}")
print(f"Orig working directory : {get_original_cwd()}")
print(f"to_absolute_path('foo') : {to_absolute_path('foo')}")
print(f"to_absolute_path('/foo') : {to_absolute_path('/foo')}")
if __name__ == "__main__":
my_app()
Current working directory : /Users/omry/dev/hydra/outputs/2019-10-23/10-53-03
Original working directory : /Users/omry/dev/hydra
to_absolute_path('foo') : /Users/omry/dev/hydra/foo
to_absolute_path('/foo') : /foo
The name of the generated working directories can be customized.