Skip to main content

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 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.