You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Use categorical distribution instead of goptuna.DiscreteUniformDistribution// because goptuna.DiscreteUniformDistributions needs to declare the parameter// space with minimum value, maximum value and interval.choices:=p.GetFeasibleSpace().GetList()
searchSpace[p.Name] = goptuna.CategoricalDistribution{
Choices: choices,
}
See the following code comment of Katib.
https://github.com/kubeflow/katib/blob/2c4ad152cd5d534c86923a23e7350185d32b5538/pkg/suggestion/v1beta1/goptuna/converter.go#L146-L154
The text was updated successfully, but these errors were encountered: