I am trying to set a string Domain
wrapper for syne tune search parameters (Domain
class is inherited from ray-tune.
My entry point requires an argument such as --config [lr=0.1, optimizer=adam]
with other override configurations.
I would like to setup a search space such as
config_space = {
'config': f'[lr={loguniform(1e-5,1e-1)}]'
}
However this creates a constant string when setting up and doesn't actually search the configuration space.
Is there some way to make this work effortlessly? some other workaround?
Thanks