hydra experiment sample:
# @package _global_
defaults:
- override /segment: segment_RGB
look_up_region : 20
below hydra config which in experiment
mode will pass final value of look_up_region
equal to 10:
defaults:
- segment: segment_CMYK
look_up_region : 10
and below hydra config which in experiment
mode will pass final value of look_up_region
equal to 20:
defaults:
- segment: segment_CMYK
look_up_region : ???
really i need the 10 with original config and i need the 20 only with experiment
but i am forced to use ???
how can i solve this?
one more thing, the framework is very awesome,never been happier with so many parameter which we are manage them by hydra.
Update:
Ok, found the answer by starting everything from scratch:
removing the colorlog plugin from main config:
- override hydra/job_logging: colorlog
- override hydra/hydra_logging: colorlog
why this do conflict? can i solve this ?