What is EvalML?¶
EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.
Combined with Featuretools and Compose, EvalML can be used to create end-to-end machine learning solutions for classification and regression problems.
Quick Start¶
[1]:
import evalml
from evalml import AutoClassificationSearch
Load Data¶
First, we load in the features and outcomes we want to use to train our model
[2]:
X, y = evalml.demos.load_breast_cancer()
Configure search¶
EvalML has many options to configure the pipeline search. At the minimum, we need to define an objective function. For simplicity, we will use the F1 score in this example. However, the real power of EvalML is in using domain-specific objective functions or building your own.
Below EvalML utilizes Bayesian optimization (EvalML’s default optimizer) to search and find the best pipeline defined by the given objective.
[3]:
automl = AutoClassificationSearch(objective="f1",
max_pipelines=5)
In order to validate the results of the pipeline creation and optimization process, we will save some of our data as a holdout set.
[4]:
X_train, X_holdout, y_train, y_holdout = evalml.preprocessing.split_data(X, y, test_size=.2)
When we call .search()
, the search for the best pipeline will begin. There is no need to wrangle with missing data or categorical variables as EvalML includes various preprocessing steps (like imputation, one-hot encoding, feature selection) to ensure you’re getting the best results. As long as your data is in a single table, EvalML can handle it. If not, you can reduce your data to a single table by utilizing Featuretools and its Entity Sets.
You can find more information on pipeline components and how to integrate your own custom pipelines into EvalML here.
[5]:
automl.search(X_train, y_train)
*****************************
* Beginning pipeline search *
*****************************
Optimizing for F1. Greater score is better.
Searching up to 5 pipelines.
✔ XGBoost Binary Classification Pipel... 20%|██ | Elapsed:00:05
✔ Random Forest Binary Classification... 40%|████ | Elapsed:00:17
✔ Logistic Regression Binary Pipeline: 60%|██████ | Elapsed:00:18
✔ XGBoost Binary Classification Pipel... 80%|████████ | Elapsed:00:24
✔ XGBoost Binary Classification Pipel... 100%|██████████| Elapsed:00:31
✔ Optimization finished 100%|██████████| Elapsed:00:31
See Pipeline Rankings¶
After the search is finished we can view all of the pipelines searched, ranked by score. Internally, EvalML performs cross validation to score the pipelines. If it notices a high variance across cross validation folds, it will warn you. EvalML also provides additional guardrails to analyze your data to assist you in producing the best performing pipeline.
[6]:
automl.rankings
[6]:
id | pipeline_name | score | high_variance_cv | parameters | |
---|---|---|---|---|---|
0 | 0 | XGBoost Binary Classification Pipeline | 0.986002 | False | {'impute_strategy': 'most_frequent', 'percent_... |
1 | 2 | Logistic Regression Binary Pipeline | 0.984309 | False | {'impute_strategy': 'mean', 'penalty': 'l2', '... |
2 | 1 | Random Forest Binary Classification Pipeline | 0.963584 | False | {'impute_strategy': 'median', 'percent_feature... |
Describe pipeline¶
If we are interested in see more details about the pipeline, we can describe it using the id
from the rankings table:
[7]:
automl.describe_pipeline(3)
******************************************
* XGBoost Binary Classification Pipeline *
******************************************
Problem Type: Binary Classification
Model Family: XGBoost
Number of features: 4
Pipeline Steps
==============
1. One Hot Encoder
* top_n : 10
2. Simple Imputer
* impute_strategy : most_frequent
* fill_value : None
3. RF Classifier Select From Model
* percent_features : 0.14894727260851873
* threshold : -inf
4. XGBoost Classifier
* eta : 0.4736080452737106
* max_depth : 18
* min_child_weight : 5.153314260276387
* n_estimators : 660
Training
========
Training for Binary Classification problems.
Total training time (including CV): 6.3 seconds
Cross Validation
----------------
F1 Accuracy Binary Balanced Accuracy Binary Precision Recall AUC Log Loss Binary MCC Binary # Training # Testing
0 0.953 0.941 0.935 0.948 0.958 0.978 0.175 0.873 303.000 152.000
1 0.926 0.908 0.902 0.926 0.926 0.976 0.216 0.804 303.000 152.000
2 0.942 0.927 0.920 0.938 0.947 0.956 0.202 0.843 304.000 151.000
mean 0.941 0.925 0.919 0.937 0.944 0.970 0.198 0.840 - -
std 0.013 0.017 0.017 0.011 0.016 0.012 0.021 0.035 - -
coef of var 0.014 0.018 0.018 0.012 0.017 0.013 0.106 0.042 - -
Select Best pipeline¶
We can now select best pipeline and score it on our holdout data:
[8]:
pipeline = automl.best_pipeline
pipeline.score(X_holdout, y_holdout, ["f1"])
[8]:
OrderedDict([('F1', 0.9210526315789473)])
We can also visualize the structure of our pipeline:
[9]:
pipeline.graph()
[9]: