Skip to main content

Documentation Index

Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Get dataset via UI

You can download the entire dataset via the UI.

Get dataset via Code

You may want to export your datasets to run custom experiments or clean up your data by adding/removing examples. You can get a dataframe from the datasets in Arize AX with just a few lines of code.
from arize import ArizeClient

client = ArizeClient(api_key="your-arize-api-key")

# Get dataset object with metadata
dataset = client.datasets.get(dataset_id=dataset_id)

# Get specific examples from the dataset
examples_response = client.datasets.list_examples(dataset_id=dataset_id, all=True)
for example in examples_response:
  print(example)
See the SDK reference here.