dask_ml.model_selection.SuccessiveHalvingSearchCV
dask_ml.model_selection.SuccessiveHalvingSearchCV¶
- class dask_ml.model_selection.SuccessiveHalvingSearchCV(estimator, parameters, n_initial_parameters=10, n_initial_iter=None, max_iter=None, aggressiveness=3, test_size=None, patience=False, tol=0.001, random_state=None, scoring=None, verbose=False, prefix='')¶
Perform the successive halving algorithm [1].
This algorithm trains estimators for a certain number
partial_fitcalls topartial_fit, then kills the worst performing half. It trains the surviving estimators for twice as long, and repeats this until one estimator survives.The value of \(1/2\) above is used for a clear explanation. This class defaults to killing the worst performing
1 - 1 // aggressivenessfraction of models, and trains estimators foraggressivenesstimes longer, and waits until the number of models left is less thanaggressiveness.- Parameters
- estimatorestimator object.
A object of that type is instantiated for each initial hyperparameter combination. This is assumed to implement the scikit-learn estimator interface. Either estimator needs to provide a
scorefunction, orscoringmust be passed. The estimator must implementpartial_fit,set_params, and work well withclone.- parametersdict
Dictionary with parameters names (string) as keys and distributions or lists of parameters to try. Distributions must provide a
rvsmethod for sampling (such as those from scipy.stats.distributions). If a list is given, it is sampled uniformly.- aggressivenessfloat, default=3
How aggressive to be in culling off the different estimators. Higher values imply higher confidence in scoring (or that the hyperparameters influence the
estimator.scoremore than the data).- n_initial_parametersint, default=10
Number of parameter settings that are sampled. This trades off runtime vs quality of the solution.
- n_initial_iterint
Number of times to call partial fit initially before scoring. Estimators are trained for
n_initial_itercalls topartial_fitinitially. Higher values ofn_initial_itertrain the estimators longer before making a decision. Metadata on the number of calls topartial_fitis inmetadata(andmetadata_).- max_iterint, default None
Maximum number of partial fit calls per model. If None, will allow SuccessiveHalvingSearchCV to run until (about) one model survives. If specified, models will stop being trained when
max_itercalls topartial_fitare reached.- test_sizefloat
Fraction of the dataset to hold out for computing test scores. Defaults to the size of a single partition of the input training set
Note
The training dataset should fit in memory on a single machine. Adjust the
test_sizeparameter as necessary to achieve this.- patienceint, default False
If specified, training stops when the score does not increase by
tolafterpatiencecalls topartial_fit. Off by default.- tolfloat, default 0.001
The required level of improvement to consider stopping training on that model. The most recent score must be at at most
tolbetter than the all of the previouspatiencescores for that model. Increasingtolwill tend to reduce training time, at the cost of worse models.- scoringstring, callable, None. default: None
A single string (see The scoring parameter: defining model evaluation rules) or a callable (see scoring) to evaluate the predictions on the test set.
If None, the estimator’s default scorer (if available) is used.
- random_stateint, RandomState instance or None, optional, default: None
If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by np.random.
- verbosebool, float, int, optional, default: False
If False (default), don’t print logs (or pipe them to stdout). However, standard logging will still be used.
If True, print logs and use standard logging.
If float, print/log approximately
verbosefraction of the time.- prefixstr, optional, default=””
While logging, add
prefixto each message.
- Attributes
- cv_results_dict of np.ndarrays
This dictionary has keys
mean_partial_fit_timemean_score_timestd_partial_fit_timestd_score_timetest_scorerank_test_scoremodel_idpartial_fit_callsparamsparam_{key}, wherekeyis every key inparams.
The values in the
test_scorekey correspond to the last score a model received on the hold out dataset. The keymodel_idcorresponds withhistory_. This dictionary can be imported into Pandas.- metadata and metadata_dict[key, int]
Dictionary describing the computation.
metadatadescribes the computation that will be performed, andmetadata_describes the computation that has been performed. Both dictionaries have keysn_models: the number of models for this run of successive halvingmax_iter: the maximum number of timespartial_fitis called. At least one model will have this manypartial_fitcalls.partial_fit_calls: the total number ofpartial_fitcalls. All models together will receive this manypartial_fitcalls.
When
patienceis specified, the reduced computation will be reflected inmetadata_but notmetadata.- model_history_dict of lists of dict
A dictionary of each models history. This is a reorganization of
history_: the same information is present but organized per model.This data has the structure
{model_id: hist}wherehistis a subset ofhistory_andmodel_idare model identifiers.- history_list of dicts
Information about each model after each
partial_fitcall. Each dict the keyspartial_fit_timescore_timescoremodel_idparamspartial_fit_calls
The key
model_idcorresponds to themodel_idincv_results_. This list of dicts can be imported into Pandas.- best_estimator_BaseEstimator
The model with the highest validation score among all the models retained by the “inverse decay” algorithm.
- best_score_float
Score achieved by
best_estimator_on the validation set after the final call topartial_fit.- best_index_int
Index indicating which estimator in
cv_results_corresponds to the highest score.- best_params_dict
Dictionary of best parameters found on the hold-out data.
- scorer_
The function used to score models, which has a call signature of
scorer_(estimator, X, y).- n_splits_int
Number of cross validation splits.
- multimetric_bool
Whether this cross validation search uses multiple metrics.
References
- 1
“Non-stochastic best arm identification and hyperparameter optimization” by Jamieson, Kevin and Talwalkar, Ameet. 2016. https://arxiv.org/abs/1502.07943
Methods
decision_function(X)fit(X[, y])Find the best parameters for a particular model.
get_metadata_routing()Get metadata routing of this object.
get_params([deep])Get parameters for this estimator.
inverse_transform(Xt)predict(X)Predict for X.
predict_log_proba(X)Log of probability estimates.
predict_proba(X)Probability estimates.
score(X[, y])Returns the score on the given data.
set_params(**params)Set the parameters of this estimator.
set_score_request(*[, compute])Configure whether metadata should be requested to be passed to the
scoremethod.transform(X)Transform block or partition-wise for dask inputs.
partial_fit
- __init__(estimator, parameters, n_initial_parameters=10, n_initial_iter=None, max_iter=None, aggressiveness=3, test_size=None, patience=False, tol=0.001, random_state=None, scoring=None, verbose=False, prefix='')¶