it is possible to pass the internal_search_space manually. This is useful in cases where we want to directly pass a search_space (without the to_tune() machinery). In such cases it was previously not possible to add an .extra_trafo to this search space AND to internal tuning (because the internal search space cannot have a parameter transformation).
Previously it was not possible to do something like the code below:
After this PR:
internal_search_space
manually. This is useful in cases where we want to directly pass asearch_space
(without theto_tune()
machinery). In such cases it was previously not possible to add an.extra_trafo
to this search space AND to internal tuning (because the internal search space cannot have a parameter transformation).