optuna.search_space.IntersectionSearchSpace
- class optuna.search_space.IntersectionSearchSpace(include_pruned=False)[source]
A class to calculate the intersection search space of a
Study
.Intersection search space contains the intersection of parameter distributions that have been suggested in the completed trials of the study so far. If there are multiple parameters that have the same name but different distributions, neither is included in the resulting search space (i.e., the parameters with dynamic value ranges are excluded).
Note that an instance of this class is supposed to be used for only one study. If different studies are passed to
calculate()
, aValueError
is raised.- Parameters:
include_pruned (bool) – Whether pruned trials should be included in the search space.
Methods
calculate
(study)Returns the intersection search space of the
Study
.