Is there a way to define the default config in the hydra decorator and w/o saving it to any yaml file? For some small scripts it might be very hande.
Something like this:
@hydra.main(default={var1='default_value1', var2='xxx'})
def main(cfg):
pass