I have two questions concerning Ray Tune. First, how can I define a hyperparameter search space independently from the particular SearchAlgorithm
used. For instance, HyperOpt uses something like 'height': hp.uniform('height', -100, 100)
whereas BayesOpt uses something like 'width': (0, 20)
; is there some generic interface or API?
Second, I would like to be able to define a hyperparameter search space using a shape
argument, akin to defining a numpy array. I would like something like 'heights': hp.uniform('height', -100, 100, shape=(10,))
. Is there a way to do this?