smoke.yaml 637 B

12345678910111213141516171819202122
  1. # @package _global_
  2. # Smoke test: disable logging and model checkpointing
  3. logger:
  4. wandb:
  5. mode: disabled
  6. callbacks:
  7. model_checkpoint: null
  8. model_checkpoint_progress: null
  9. hydra:
  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}