AutoMLSearch.
search
Find the best pipeline for the data set.
X (pd.DataFrame, ww.DataTable) – The input training data of shape [n_samples, n_features]
y (pd.Series, ww.DataColumn) – The target training data of length [n_samples]
show_iteration_plot (boolean, True) – Shows an iteration vs. score plot in Jupyter notebook. Disabled by default in non-Jupyter enviroments.
data_checks (DataChecks, list(Datacheck), str, None) – A collection of data checks to run before automl search. If data checks produce any errors, an exception will be thrown before the search begins. If “disabled” or None, no data checks will be done. If set to “auto”, DefaultDataChecks will be done. Default value is set to “auto”.
self