LogoLogo
Python SDKSlack
  • Documentation
  • Cookbooks
  • Self-Hosting
  • Release Notes
  • Reference
  • Changelog
  • History
    • 2025
      • 04.2025
      • 03.2025
      • 02.27.2025
      • 02.14.2025
      • 01.21.2025
    • 2024
      • 12.19.2024
      • 12.05.2024
      • 11.07.2024
      • 10.24.2024
      • 10.03.2024
      • 09.19.2024
      • 09.05.2024
      • 08.23.2024
      • 08.08.2024
      • 07.10.2024
      • 06.07.2024
      • 05.10.2024
      • 04.25.2024
      • 04.12.2024
      • 03.28.2024
      • 03.18.2024
      • 02.16.2024
      • 01.18.2024
      • 01.04.2024
    • 2023 and older
      • 2023
        • 12.07.2023
        • 11.14.2023
        • 10.26.2023
        • 10.11.2023
        • 08.29.2023
        • 07.17.2023
        • 06.05.2023
        • 05.08.2023
        • 04.17.2023
        • 03.13.2023
        • 02.13.2023
        • 01.24.2023
      • 2022
        • 12.19.2022
        • 11.28.2022
        • 11.07.2022
        • 10.10.2022
        • 09.26.2022
        • 09.12.2022
        • 08.29.2022
        • 08.15.2022
        • 08.01.2022
        • 07.18.2022
        • 06.28.2022
        • 06.06.2022
        • 05.23.2022
        • 05.09.2022
        • 04.25.2022
        • 04.11.2022
        • 03.28.2022
        • 03.14.2022
        • 02.28.2022
        • 02.14.2022
        • 01.31.2022
        • 01.18.2022
      • 2021
        • 12.15.2021: CVE-44228
        • 12.13.2021
        • 11.18.2021
        • 11.02.2021
        • 10.15.2021
        • 09.27.2021
        • 06.25.2021
        • 05.28.2021
        • 04.30.2021
        • 04.16.2021
        • 04.02.2021
        • 03.12.2021
        • 02.26.2021
Powered by GitBook

Support

  • Chat Us On Slack
  • support@arize.com

Get Started

  • Signup For Free
  • Book A Demo

Copyright © 2025 Arize AI, Inc

On this page
  • What's New
  • Enhancements
  • In The News

Was this helpful?

  1. History
  2. 2023 and older
  3. 2023

03.13.2023

Last updated 1 year ago

Was this helpful?

What's New

Data Upload: Google BigQuery Integration

Sync Google BigQuery's data warehouse with Arize to automatically monitor and analyze new model data. Learn how to configure BigQuery with Arize .

Monitors: Setup Monitors Tab

Discover and enable a wide selection of monitors and metrics recommended for your model. Navigate to the Monitors Setup Tab within the monitors listing tab. From there, click on the "Enable" button to setup a monitor for your predictions or features.

Model Overview & Dimension Detail: Pre-production Dataset Support

Support for visualizing training and validation data on the model overview and dimension details page. This enables users without production data to visualize and better understand their data.

Ranking: Python SDK Single Record Support

# new class 
class RankingPredictionLabel(
    group_id: str # required
    rank: int # required
    score: Optional[float]
    label: Optional[str]
)

# new class 
class RankingActualLabel(
    relevance_labels: Optional[List[str]]
    relevance_score: Optional[float]
)
from arize.api import Client
from arize.utils.types import Environments, ModelTypes, Schema, RankingPredictionLabel, RankingActualLabel

pred_label = RankingPredictionLabel(
      group_id="A",
      rank=1,
      score=1.0,
      label="click",
  )
act_label = RankingActualLabel(
    relevance_labels=["click", "save"],
    relevance_score=0.5,
)

response = arize.log(
    model_id="demo-ranking-single-log",
    model_version="v1",
    environment=Environments.PRODUCTION,
    model_type=ModelTypes.RANKING,
    prediction_id="123",
    prediction_label=pred_label,
    actual_label=act_label,
    features=features,
)

Enhancements

Ranking: Dashboard Template

Embeddings: Cluster Distribution Chart

Embeddings: Single Dataset Support

Model Overview: Onboarding Checklist

Follow the steps on the onboarding checklist to finish setting up your model in Arize.

In The News

New Course Additions!

New additions include:

Arize AI completed the Payment Card Industry Data Security Standard (PCI DSS) 4.0 certification! Recently updated to address emerging threats and attack vectors, PCI DSS 4.0 is a global standard that provides a baseline of technical and operational requirements designed to protect account data.

AI Coffee Break: Why ChatGPT Fails: Explaining Language Model Limitations

A chat with Zippi’s Data Lead Valeria Gomes about the company’s origin story, best practices for building an ML practice in fintech, and why the company selected Arize as its ML observability partner.

Ingest a sample of your ranking model data record-by-record with . Learn more about Python Single Record initialization and parameters and follow an example .

Track rank-aware evaluation metric fluctuations and analyze ranking slices with the ranking dashboard template. Learn more about ranking model and dashboards .

Quickly identify model drift by comparing the number of points between your primary dataset and your baseline. Learn more about clusters .

Support for ingesting a single dataset of either training, validation, or production data when sending embeddings data to Arize and viewing a single dataset on UMAP to gain insights into your data. Learn more about embeddings .

Arize's self-guided offers modules on how to calculate and use some of the most common metrics in model monitoring – including for performance, drift, data quality, fairness, and service-level performance – as well as the latest techniques in monitoring embeddings and unstructured data.

: K nearest neighbor is a valuable part of any machine learning toolbox and is useful in a variety of real-world applications, from image classification to sentiment analysis. This piece gives a technical overview of the KNN algorithm and explains its practical implementation, applications, limitations, and areas for improvement.

: This deep dive covers what JS divergence and how it differs from KL Divergence, how to use JS Divergence in machine learning model measurement, how the unique approach of a mixture distribution helps with a common measurement issue, and more.

: A neutral take on why machine learning teams are adopting feature stores, the major tools, and a few tips for how to monitor your feature store.

: For unstructured text data and natural language processing (NLP) applications, tokenization is a core component of the processing pipeline.In this great primer, we take a closer look at what tokenization is, why it matters, how to use it, and some exciting applications in the real-world (including in generative AI!).

Python SDK version 6.1.0
here
here
here
here
here
here
ML observability course
KNN Algorithm
JS Divergence KL Divergence
Feature Store
Tokenization
Arize AI Achieves Payment Card Industry Data Security Standard 4.0 Certification
Zippi: Empowering Micro Entrepreneurs Through Machine Learning
here
Data Upload Tab
Enabling An Example Ranking Dashboard
View a single dataset on UMAP