debug.yaml 781 B

123456789101112131415161718192021222324252627
  1. # @package _global_
  2. # run in debug mode with:
  3. # `python run.py mode=debug`
  4. defaults:
  5. - override /trainer: debug.yaml
  6. debug_mode: True
  7. hydra:
  8. # sets level of all command line loggers to 'DEBUG'
  9. verbose: True
  10. # https://hydra.cc/docs/tutorials/basic/running_your_app/logging/
  11. # sets level of only chosen command line loggers to 'DEBUG'
  12. # verbose: [src.train, src.utils.utils]
  13. # sets output paths for all file logs to 'logs/debug/'
  14. run:
  15. dir: ${oc.env:RESULT_DIR,${work_dir}/logs}/debug/${now:%Y-%m-%d}/${now:%H-%M-%S}
  16. sweep:
  17. dir: ${oc.env:RESULT_DIR,${work_dir}/logs}/debug/multirun_${now:%Y-%m-%d_%H-%M-%S}
  18. subdir: ${hydra.job.num}
  19. # disable rich config printing, since it will be already printed by hydra when `verbose: True`
  20. print_config: False