evalml.automl.AutoMLSearch¶

-
class
evalml.automl.AutoMLSearch(problem_type=None, objective='auto', max_pipelines=None, max_time=None, patience=None, tolerance=None, data_split=None, allowed_pipelines=None, allowed_model_families=None, start_iteration_callback=None, add_result_callback=None, additional_objectives=None, random_state=0, n_jobs=-1, tuner_class=None, verbose=True, optimize_thresholds=False)[source]¶ Automated Pipeline search.
Methods
Automated pipeline search
Fits and evaluates a given pipeline then adds the results to the automl rankings with the requirement that automl search has been run.
Describe a pipeline
Given the ID of a pipeline training result, returns an untrained instance of the specified pipeline initialized with the parameters used to train that pipeline during automl search.
Loads AutoML object at file path
Saves AutoML object at file path
Find best classifier
Attributes
best_pipelineReturns an untrained instance of the best pipeline and parameters found during automl search.
data_check_resultsfull_rankingsReturns a pandas.DataFrame with scoring results from all pipelines searched
has_searchedReturns True if search has been ran and False if not
rankingsReturns a pandas.DataFrame with scoring results from the highest-scoring set of parameters used with each pipeline.