Open Rusteam opened 2 years ago
Hey @Rusteam, thanks for raising this! Yes this is definitely a nice-to-have enhancement we could add!
For now, it should still be possible select N different values from a list, by either using N different hyperparameters (or nested hyperparameters) and with the same exact search space and doing a tune.choice
on each of them, or using something like itertools.permutation
to generate all the subsets beforehand into a single search space that you select from.
Search before asking
Description
There're cases when I want to optimize a subsample from a list of options, for instance, image augmentations.
I have a list of augmentations such as
[crop, color, weather, randaugment, rotate, randerasing, etc.]
and I want to use ray.tune to find best subset of augmentations. In order to achieve that I want to be able to select multiple options from the original list for each trial.Use case
A list of image augmentations.
Related issues
No response
Are you willing to submit a PR?