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
Calling OptunaSearchCV with argument verbose=0 should not produce any verbose output to stdout, but it still prints a warning, a study creation message, and one line for every trial performed.
Environment
Optuna version: 3.6.1
Optuna Integration version: 3.6.0
Python version: 3.11.8
OS: Ubuntu 20.04.6 LTS (Focal Fossa)
Error messages, stack traces, or logs
/tmp/ipykernel_1434112/215034810.py:9: ExperimentalWarning: OptunaSearchCV is experimental (supported from v0.17.0). The interface can change in the future.
reg = optuna_integration.OptunaSearchCV(model, param_space, n_trials=2, verbose=0)
[I 2024-05-07 11:24:28,187] A new study created in memory with name: no-name-2885ec7c-3eb9-41c1-89e4-176866e4f9eb
[I 2024-05-07 11:24:28,241] Trial 0 finished with value: 0.7458922389714324 and parameters: {'alpha': 0.6304826468351286}. Best is trial 0 with value: 0.7458922389714324.
[I 2024-05-07 11:24:28,278] Trial 1 finished with value: 0.7346998198207924 and parameters: {'alpha': 0.13100756138334635}. Best is trial 0 with value: 0.7458922389714324.
Calling OptunaSearchCV with argument verbose=0 should not produce any verbose output to stdout
Hmm, I don't think so. This argument controls OptunaSearchCV's logger, not optuna's logger as defined in the codebase. It would be great to clarify this in the docs.
Expected behavior
Calling OptunaSearchCV with argument
verbose=0
should not produce any verbose output to stdout, but it still prints a warning, a study creation message, and one line for every trial performed.Environment
Error messages, stack traces, or logs
Steps to reproduce
Additional context (optional)
No response
The text was updated successfully, but these errors were encountered: