📣
Arize Changelog
  • 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
On this page
  • What's New
  • In The News

Was this helpful?

  1. History
  2. 2023 and older
  3. 2023

01.24.2023

New Releases, Enhancements, Changes + Arize in the News!

Last updated 2 years ago

Was this helpful?

What's New

Local File Upload

Upload a local file directly through the UI on the 'Upload Data' page. Use Local Upload to verify the schema for a sample of your data and quickly onboard a model. This feature supports CSV, Parquet, and Avro files. Learn how to upload a file.

Note: Local File Upload is limited to one 30MB file at a time.

Python SDK: Model Type & Metrics Validator

response = arize_client.log(
    model_id='sample-model-1', 
    model_version='v1', 
    model_type=ModelTypes.BINARY_CLASSIFICATION, # new model type name
    metrics_validation=[Metrics.CLASSIFICATION], # new metrics validator
    environment=Environments.PRODUCTION,
    dataframe=example_dataframe,
    schema=schema
)

Python SDK: Embeddings Dictionary

# before (embedding_column_names as a list)
embedding_column_names = [
    EmbeddingColumnNames(
        vector_column_name="vector",
        data_column_name="text",
        link_to_data_column_name="image_link",
    )
]

# after (embedding_column_names as a dict)
embedding_column_names = {
    "embedding_display_name": EmbeddingColumnNames(
        vector_column_name="vector",
        data_column_name="text",
        link_to_data_column_name="image_link",
    )
} 

In The News

"What is" Series

Many executives wonder how generative AI will impact their business – particularly in a turbulent economic environment where growing productivity takes on an elevated importance. Here are a few tips for developing a generative AI strategy.

Key predictions for the state of AI in 2023:

  1. Generative AI will go mainstream (but we need all hands on deck)

  2. AI will likely take on elevated importance as the economy pressures companies to deliver greater efficiency and productivity.

  3. The days of central ML teams taking months or years to build and maintain proprietary feature stores or monitoring tools in-house are numbered.

  4. ML platforms that aren't built to handle unstructured use cases risk irrelevance.

Revised model_type names (i.e. binary classification, regression) for enhanced clarity when sending in a model. Learn more about model types and the applicable metric group per model type .

(Optional) Provide the metrics_validation field to validate your schema and specify the desired metric group to be visualized in the Arize UI. Learn more about the metrics validator .

embedding_column_names is now a dictionary object (previously a list). Use this dictionary to name embeddings represented in the UI for enhanced platform flexibility. Learn more .

here
here
here
here
Kolmogorov Smirnov Test
Normalized Discounted Cumulative Gain
Jensen Shannon Divergence
Fairness and Bias Metrics
Population Stability Index
Generative AI is Working It's Way Into Your Business, Are You Ready?
Four Predictions for AI in 2023
here