File size: 608 Bytes
d2e7940 ee280e5 d2e7940 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# @package _global_
# specify here default evaluation configuration
defaults:
- _self_
- datamodule: foucs.yaml # choose the datamodule for evaluation
- model: focus.yaml
- callbacks: null
- logger: null
- trainer: default.yaml
- log_dir: evaluation.yaml
- experiment: null
# enable color logging
- override hydra/hydra_logging: colorlog
- override hydra/job_logging: colorlog
original_work_dir: ${hydra:runtime.cwd}
data_dir: ${original_work_dir}/data/
print_config: True
ignore_warnings: True
seed: null
name: "default"
# passing checkpoint path is necessary
ckpt_path: ???
|