Skip to main content
Use the Arize Python package to monitor machine learning predictions to observe your ML models and their features, predicted labels, and actual labels with just a few lines of code.

Installing the package

pip install arize
In addition to the basic functionality installed by the command above, the Arize SDK has additional functionality that can be installed with some extra dependencies:

LLM Tracing

minimum required for LLM Tracing
With this extra module, Arize can receive your traces and spans to break down your system’s components into discrete inputs and outputs to help debug your LLM application. Learn more here.
pip install arize[Tracing]

Auto Embeddings

minimum required for Auto Embeddings
With this extra module, Arize properly extracts the embeddings depending on your use case, and we return it to you to include in your Pandas DataFrame. Learn more here. To install the Arize package including this functionality:
pip install arize[AutoEmbeddings]

NLP Metrics

minimum required for NLP Metrics
With this extra module, Arize helps you calculate evaluation metrics for your NLP Generative tasks. Learn more here. To install the Arize package including this functionality:
pip install arize[NLP_Metrics]

Mimic Explainer

minimum required for Mimic Explainer
With this extra module, Arize allows the user to pass a flag with their request to send data that would produce SHAP values using the surrogate explainability approach. Learn more here. To install the Arize package including this functionality:
pip install arize[MimicExplainer]

Logging Options

The Arize Python SDK offers 2 ways of logging data into the platform:

Pandas Batch Logging

Designed for logging a batch of your model inferences using Pandas DataFrames. Go to the following page for more information.

https://github.com/Arize-ai/docs/blob/main/arize/machine-learning/machine-learning/api-reference-ml/python-sdk/arize.pandas

Single Record Logging

Designed for low latency, one-at-a-time, logging of your model inferences. Go to the following page for more information.

https://github.com/Arize-ai/docs/blob/main/arize/machine-learning/machine-learning/api-reference-ml/python-sdk/arize.log

End of Support Table

Major ReleaseFirst ReleasedLatestSupport
7.xJune, 2023latestEnds June 1st, 2026
6.xJanuary, 20236.1.3Ends June 1st, 2025
5.xAugust, 20225.5.0Ends November 1st, 2024
4.xMarch, 20224.2.2Ended June 1st, 2024
3.xSeptember, 20213.4.0Ended April 1st, 2024
2.xMarch, 20212.2.1Ended July 1st, 2023
1.xJuly, 20201.2.1Ended March 1st, 2022
0.xMarch, 20200.0.20Ended March 1st, 2022

Changelog