climaticai is a library that builds, optimizes, and evaluates machine learning pipelines
Project description
climaticai 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 climaticai
Add-ons
Update checker
Receive automatic notifications of new climaticai releases
pip install climaticai[update_checker]
Start
Load and split example data
import climaticai
X, y = climaticai.demos.load_breast_cancer()
X_train, X_test, y_train, y_test = climaticai.preprocessing.split_data(X, y, problem_type='binary')
Run AutoML
from climaticai.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 climaticai on our documentation page:
- Installation and getting started.
- Tutorials on how to use climaticai.
- User guide which describes climaticai'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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for climaticai-1.33.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | baa65c22c7d16b9bbd124364b770b78433377d4efc0dd92b7af77ed30fe15fdb |
|
MD5 | 502ba17004d54e910acad58177de941a |
|
BLAKE2b-256 | d3340fb01a2709d219e2ebcdd64b9adf49fe78fbf348db004c089ae1f330285a |