Skip to content

Commit

Permalink
Remove default value on minimum noise
Browse files Browse the repository at this point in the history
  • Loading branch information
contramundum53 committed Feb 8, 2024
1 parent dd030cd commit e0ab667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optuna/_gp/gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def fit_kernel_params(
Y: np.ndarray, # [len(trials)]
is_categorical: np.ndarray, # [len(params)]
log_prior: Callable[[KernelParamsTensor], torch.Tensor],
minimum_noise: float = 0.0,
minimum_noise: float,
initial_kernel_params: KernelParamsTensor | None = None,
) -> KernelParamsTensor:
n_params = X.shape[1]
Expand Down

0 comments on commit e0ab667

Please sign in to comment.