Skip to content

Commit 4f35663

Browse files
fix
Signed-off-by: Shashank Mittal <[email protected]>
1 parent 14f30a5 commit 4f35663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/suggestion/v1beta1/hyperopt/base_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def create_hyperopt_domain(self):
6969
# Uniform distribution: values are sampled between min and max.
7070
# If step is defined, we use the quantized version quniform.
7171
if param.step:
72-
hyperopt_search_space[param.name] = hyperopt.hp.uniformint(
72+
hyperopt_search_space[param.name] = hyperopt.hp.quniform(
7373
param.name,
7474
float(param.min),
7575
float(param.max),

0 commit comments

Comments
 (0)