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.
Installation
Install from PyPI:
pip install evalml
or from the conda-forge channel on conda:
conda install -c conda-forge evalml
Add-ons
Update checker - Receive automatic notifications of new Woodwork releases
PyPI:
pip install "evalml[update_checker]"
Conda:
conda install -c conda-forge alteryx-open-src-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.44.0.tar.gz.
File metadata
- Download URL: evalml-0.44.0.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b1ab51d78355c207f7f78dcaf2de7408fbd621d3ac9d1144b3bab2528736442
|
|
| MD5 |
3d2e395244711ea530427e342265edec
|
|
| BLAKE2b-256 |
4654c20697027da6cb5d664c5f592372e487c1bb87e4c34a4301a466dcbcd1e1
|
File details
Details for the file evalml-0.44.0-py3-none-any.whl.
File metadata
- Download URL: evalml-0.44.0-py3-none-any.whl
- Upload date:
- Size: 6.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14ffb348b1101493cdcea73300dfc5fc25c0a2f7fc4d506bd4a0582fe0506d74
|
|
| MD5 |
532cd2d2f01894d493685db4911a3902
|
|
| BLAKE2b-256 |
18545e2845863e9eb1654719114f028fa532427422e1227ab1ad5df407357419
|