EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.
Project description
EvalML is an AutoML library which builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.
Key Functionality
- Automation - Makes machine learning easier. Avoid training and tuning models by hand. Includes data quality checks, cross-validation and more.
- Data Checks - Catches and warns of problems with your data and problem setup before modeling.
- End-to-end - Constructs and optimizes pipelines that include state-of-the-art preprocessing, feature engineering, feature selection, and a variety of modeling techniques.
- Model Understanding - Provides tools to understand and introspect on models, to learn how they'll behave in your problem domain.
- Domain-specific - Includes repository of domain-specific objective functions and an interface to define your own.
Install from PyPI
pip install evalml
Add-ons
Time Series support with Facebook's Prophet
To support the Prophet time series estimator, be sure to install it as an extra requirement. Please note that this may take a few minutes.
Prophet is currently only supported via pip installation in EvalML.
pip install evalml[prophet]
Update checker
Receive automatic notifications of new EvalML releases
pip install evalml[update_checker]
Start
Load and split example data
import evalml
X, y = evalml.demos.load_breast_cancer()
X_train, X_test, y_train, y_test = evalml.preprocessing.split_data(X, y, problem_type='binary')
Run AutoML
from evalml.automl import AutoMLSearch
automl = AutoMLSearch(X_train=X_train, y_train=y_train, problem_type='binary')
automl.search()
View pipeline rankings
automl.rankings
Get best pipeline and predict on new data
pipeline = automl.best_pipeline
pipeline.predict(X_test)
Next Steps
Read more about EvalML on our documentation page:
- Installation and getting started.
- Tutorials on how to use EvalML.
- User guide which describes EvalML's features.
- Full API reference
Built at Alteryx Innovation Labs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file evalml-0.32.0.tar.gz.
File metadata
- Download URL: evalml-0.32.0.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b719fd2dd7b8531c30ca2ccd9491066f76239f8a396e0a5a941740d7681044f6
|
|
| MD5 |
c08f00ca04fa21fd1dbb0012624e01e5
|
|
| BLAKE2b-256 |
1e36eea0253ef61edddee5320be699cb282272d2b8000383b7b23a03ed2414be
|
File details
Details for the file evalml-0.32.0-py3-none-any.whl.
File metadata
- Download URL: evalml-0.32.0-py3-none-any.whl
- Upload date:
- Size: 6.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dffe8a2860ef79e800ed68c47afbc0ef67581342fa5642735e9e8759eb704d6e
|
|
| MD5 |
9b193fdc5033325c3a48caa88f7753be
|
|
| BLAKE2b-256 |
2c7e2037062c848afd35f03d14ac9d612547b439f8f768cadfc58b876e5dd703
|