OptunaSearchCV¶
sklearn_optuna.search.OptunaSearchCV
¶
Bases: BaseSearchCV
Hyperparameter search using Optuna optimization.
OptunaSearchCV implements a "fit" and a "score" method and provides hyperparameter optimization using Optuna's trial-based optimization framework. It automatically manages the Optuna study and suggests parameters using the specified sampler.
The parameters of the estimator used to apply these methods are optimized by cross-validated search over parameter settings defined using Optuna distributions.
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
estimator
|
estimator object
|
An object of that type is instantiated for each search point.
This is assumed to implement the scikit-learn estimator interface.
Either estimator needs to provide a |
required |
param_distributions
|
dict[str, BaseDistribution]
|
Dictionary with parameter names (str) as keys and Optuna distribution objects as values. Distributions define the search space for each hyperparameter. |
required |
scoring
|
str, callable, list, tuple, or dict
|
Strategy to evaluate the performance of the cross-validated model on the test set. If
If
See multimetric grid search for an example. |
None
|
sampler
|
Sampler
|
A wrapped Optuna sampler. If None, TPESampler is used. |
None
|
storage
|
Storage
|
A wrapped Optuna storage. If None, in-memory storage is used. |
None
|
callbacks
|
dict of str to Callback
|
Dictionary mapping callback names to Callback instances. Each callback is invoked at the end of each trial with the study and trial objects. |
None
|
n_trials
|
int
|
Number of trials for hyperparameter search. Each trial evaluates one set of hyperparameters. |
10
|
timeout
|
float
|
Stop study after the given number of seconds. If this argument is set to None, the study is executed without time limitation. |
None
|
n_jobs
|
int
|
Number of parallel trials to run. This parameter is passed directly to
Optuna's |
None
|
refit
|
bool, str, or callable
|
Refit an estimator using the best found parameters on the whole dataset. |
True
|
cv
|
int, cross-validation generator or an iterable
|
Determines the cross-validation splitting strategy. Possible inputs for cv are:
For integer/None inputs, if the estimator is a classifier and Refer to the cross-validation user guide for the various cross-validation strategies that can be used here. |
None
|
verbose
|
int
|
Controls the verbosity: the higher, the more messages.
|
0
|
error_score
|
'raise' or numeric
|
Value to assign to the score if an error occurs in estimator fitting. If set to 'raise', the error is raised. If a numeric value is given, FitFailedWarning is raised. |
np.nan
|
return_train_score
|
bool
|
If |
False
|
Attributes¶
| Name | Type | Description | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cv_results_ |
dict of numpy (masked) ndarrays
|
A dict with keys as column headers and values as columns, that can be
imported into a pandas For instance the below given table
will be represented by a NOTE The key The For multi-metric evaluation, the scores for all the scorers are
available in the |
||||||||||||||||||||||||||||||
best_estimator_ |
estimator
|
Estimator that was chosen by the search, i.e. estimator
which gave highest score (or smallest loss if specified)
on the left out data. Not available if See |
||||||||||||||||||||||||||||||
best_score_ |
float
|
Mean cross-validated score of the best_estimator. For multi-metric evaluation, this is present only if This attribute is not available if |
||||||||||||||||||||||||||||||
best_params_ |
dict
|
Parameter setting that gave the best results on the hold out data. |
||||||||||||||||||||||||||||||
best_index_ |
int
|
The index (of the |
||||||||||||||||||||||||||||||
scorer_ |
function or a dict
|
Scorer function used on the held out data to choose the best parameters for the model. |
||||||||||||||||||||||||||||||
n_splits_ |
int
|
The number of cross-validation splits (folds/iterations). |
||||||||||||||||||||||||||||||
refit_time_ |
float
|
Seconds used for refitting the best model on the whole dataset. |
||||||||||||||||||||||||||||||
multimetric_ |
bool
|
Whether or not the scorers compute several metrics. |
||||||||||||||||||||||||||||||
classes_ |
ndarray of shape (n_classes,)
|
Class labels. Only available when |
||||||||||||||||||||||||||||||
study_ |
Study
|
The Optuna study object containing all trials and optimization history. |
||||||||||||||||||||||||||||||
trials_ |
list of optuna.trial.FrozenTrial
|
The list of all trials executed during the search. |
||||||||||||||||||||||||||||||
n_features_in_ |
int
|
Number of features seen during fit. |
||||||||||||||||||||||||||||||
feature_names_in_ |
ndarray of shape (`n_features_in_`,)
|
Names of features seen during fit. Defined only when |
Examples¶
>>> from sklearn.datasets import load_iris
>>> from sklearn.svm import SVC
>>> from sklearn_optuna import OptunaSearchCV, Sampler
>>> from optuna.distributions import FloatDistribution
>>> import optuna
>>> X, y = load_iris(return_X_y=True)
>>> param_distributions = {
... "C": FloatDistribution(0.01, 10.0, log=True),
... "gamma": FloatDistribution(0.001, 1.0, log=True),
... }
>>> search = OptunaSearchCV(
... SVC(),
... param_distributions,
... n_trials=20,
... sampler=Sampler(sampler=optuna.samplers.TPESampler, seed=42),
... )
>>> search.fit(X, y)
OptunaSearchCV(...)
>>> search.best_params_
{...}
See Also¶
sklearn_optuna.optuna.Sampler : Wrapper for Optuna samplers. sklearn_optuna.optuna.Storage : Wrapper for Optuna storage backends. sklearn_optuna.optuna.Callback : Wrapper for Optuna callbacks.
References¶
.. [1] Akiba, T., Sano, S., Yanase, T., Ohta, T., & Koyama, M. (2019). Optuna: A Next-generation Hyperparameter Optimization Framework. In KDD. https://doi.org/10.1145/3292500.3330701
Source Code¶
Show/Hide source
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |
Methods¶
fit(X, y=None, *, study=None, **params)
¶
Run fit with all sets of parameters.
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
X
|
array-like of shape (n_samples, n_features)
|
Training vectors, where |
required |
y
|
array-like of shape (n_samples, n_output) or (n_samples,)
|
Target relative to X for classification or regression; None for unsupervised learning. |
None
|
study
|
Study
|
An existing Optuna study to continue optimization from. If None, a new study will be created. |
None
|
**params
|
dict of str -> object
|
Parameters passed to the |
{}
|
Returns¶
| Name | Type | Description |
|---|---|---|
self |
object
|
Instance of fitted estimator. |
Source Code¶
Show/Hide source
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |
Tutorials¶
The following example notebooks use this component:
-
How to Stop Optimization Early with Callbacks
Stop unneeded work early by adding Optuna callbacks to your search.
-
How to Choose and Configure a Sampler
Control the optimization algorithm and get reproducible results with Optuna samplers.
-
How to Handle Failing Trials
Control what happens when a hyperparameter combination causes fitting to fail.
-
How to Route Sample Weights Through OptunaSearchCV
Pass sample_weight through OptunaSearchCV to both fitting and scoring.
-
How to Tune Pipeline Parameters
Tune hyperparameters across multiple pipeline steps with OptunaSearchCV.
-
OptunaSearchCV Quickstart
Run a fast hyperparameter search and read the best parameters and score.
-
How to Score Multiple Metrics
Evaluate hyperparameter configurations against multiple scoring metrics at once.
-
How to Resume Optimization from Prior Trials
Reuse an Optuna study to continue optimization runs and keep experiments reproducible.
-
How to Visualize Optimization History
Plot optimization progress and parameter relationships from a completed search.