From 591a0ede47f305b0fa81c8667843b2f92a291db5 Mon Sep 17 00:00:00 2001 From: Yoshihiko Ozaki <30489874+y0z@users.noreply.github.com> Date: Thu, 15 Feb 2024 15:04:42 +0900 Subject: [PATCH] Update tutorial/10_key_features/003_efficient_optimization_algorithms.py Co-authored-by: Hideaki Imamura <38826298+HideakiImamura@users.noreply.github.com> --- .../10_key_features/003_efficient_optimization_algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/10_key_features/003_efficient_optimization_algorithms.py b/tutorial/10_key_features/003_efficient_optimization_algorithms.py index a095c55d54..0ac12996f1 100644 --- a/tutorial/10_key_features/003_efficient_optimization_algorithms.py +++ b/tutorial/10_key_features/003_efficient_optimization_algorithms.py @@ -178,7 +178,7 @@ def objective(trial): # # For the complete list of Optuna's integration modules, see :mod:`~optuna.integration`. # -# For example, `optuna_integration.LightGBMPruningCallback `_ introduces pruning without directly changing the logic of training iteration. +# For example, `LightGBMPruningCallback `_ introduces pruning without directly changing the logic of training iteration. # (See also `example `_ for the entire script.) # # .. code-block:: text