Skip to main content

EazyML provides a suite of APIs for training, testing and optimizing machine learning models with built-in AutoML capabilities, hyperparameter tuning, and cross-validation.

Project description

EazyML Responsible-AI: Modeling

Python PyPI package Code Style

EazyML

eazyml-automl is a comprehensive python package designed to simplify machine learning workflows for data scientists, engineers, and developers. With AutoML capabilities, EazyML enables automated feature selection, model training, hyperparameter optimization, and cross-validation, all with minimal code. The package trains multiple models in the background, rank orders them by performance metrics, and recommends the best model for your use case.

Features

  • Global Feature Importance: Get insights into the most impactful features influencing the target variable.
  • Confidence Scoring: Enhance predictive reliability of your models with confidence scores.
  • Hyperparameter Tuning: Enhance performance of your predictive operations with optimal models.

eazyml-automl is perfect for users looking to streamline the development and operationalization of robust and efficient machine learning models.

Installation

User installation

The easiest way to install EazyML modeling is using pip:

pip install -U eazyml-automl

Dependencies

EazyML Modeling requires :

  • werkzeug
  • unidecode
  • pandas
  • scikit-learn
  • nltk
  • pyyaml
  • requests

Usage

Initialize and train predictive models on the given training data. Perform predictions on the given test data. Customize training and inference using options parameter. Please refer to the API documentation and boilerplate notebooks for details.

Imports

import pandas as pd
import joblib
from eazyml import ez_init, ez_build_model, ez_predict

Initialize and Read Data

# Initialize the EazyML automl library.
_ = ez_init()

# Load training data (Replace with the correct data path).
train_data_path = "path_to_your_training_data.csv"
train_data = pd.read_csv(train_data_path)

Train and Save Model

# Define the outcome (target variable)
outcome = "target"  # Replace with your target variable name

# Customize options for building models
build_options = {"model_type": "predictive"}

# Call EazyML API to train models
build_response = ez_build_model(train_data, outcome, options=build_options)

# build_response is a dictionary object with following keys.
# print(build_response.keys())
# dict_keys(['success', 'message', 'model_performance', 'global_importance', 'model_info'])

# Save the response for later use (e.g., for predictions with ez_predict).
build_model_response_path = 'model_response.joblib'
joblib.dump(build_response, build_model_response_path)

Use Saved Model to Predict

# Load test data.
test_data_path = "path_to_your_test_data.csv"
test_data = pd.read_csv(test_data_path)

# This shows how to use a saved model, but you might as well use the build_response object directly in case you have both build and predict operations in the same notebook for your experiments.
build_model_response_path = 'model_response.joblib'
build_model_response = joblib.load(build_model_response_path)
model_info = build_model_response["model_info"]

# Choose the model for prediction from the key "model_performance" in the build_model_response object above. The default model is the top-performing model if no value is provided.
pred_options = {"model": "Random Forest with Information Gain"}

# Call the eazyml function to predict
pred_response = ez_predict(test_data, model_info, options=pred_options)

# prediction response is a dictionary object with following keys.
# print(pred_response.keys())
# dict_keys(['success', 'message', 'pred_df'])

You can find more information in the documentation.

Useful links, other packages from EazyML family

  • Documentation

  • Homepage

  • If you have questions or would like to discuss a use case, please contact us here

  • Here are the other packages from EazyML suite:

    • eazyml-automl: eazyml-automl provides a suite of APIs for training, optimizing and validating machine learning models with built-in AutoML capabilities, hyperparameter tuning, and cross-validation.
    • eazyml-data-quality: eazyml-data-quality provides APIs for comprehensive data quality assessment, including bias detection, outlier identification, and drift analysis for both data and models.
    • eazyml-counterfactual: eazyml-counterfactual provides APIs for optimal prescriptive analytics, counterfactual explanations, and actionable insights to optimize predictive outcomes to align with your objectives.
    • eazyml-insight: eazyml-insight provides APIs to discover patterns, generate insights, and mine rules from your datasets.
    • eazyml-xai: eazyml-xai provides APIs for explainable AI (XAI), offering human-readable explanations, feature importance, and predictive reasoning.
    • eazyml-xai-image: eazyml-xai-image provides APIs for image explainable AI (XAI).

License

This project is licensed under the Proprietary License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eazyml-automl-0.0.64.tar.gz (74.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eazyml_automl-0.0.64-py2.py3-none-any.whl (76.0 MB view details)

Uploaded Python 2Python 3

File details

Details for the file eazyml-automl-0.0.64.tar.gz.

File metadata

  • Download URL: eazyml-automl-0.0.64.tar.gz
  • Upload date:
  • Size: 74.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for eazyml-automl-0.0.64.tar.gz
Algorithm Hash digest
SHA256 c751137b5260695fcef71fb8d4faf93103e837d53cea350182a4f9d81f81f6d5
MD5 b5f351e3daa4186dc994515db51f72eb
BLAKE2b-256 53c14c05f86f295f76229cbf20ec741476c926616ae962520779a659f8308a12

See more details on using hashes here.

File details

Details for the file eazyml_automl-0.0.64-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for eazyml_automl-0.0.64-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5a6a6c5bde0b35ddd74a3decf661240f2d4b416af0b5ff28ab127c6299ecedf4
MD5 fa29a6a65bdfb67cdcc2c9c0dd23faf6
BLAKE2b-256 3f1cf61a6f77c5f6b10b78c009af58b7d1acd06a30c01e9a93ebee360f97293e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page