Get a dataset
Export datasets from Arize via code or UI
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.experimental.datasets import ArizeDatasetsClient
arize_client = ArizeDatasetsClient(api_key=ARIZE_API_KEY)
dataset = arize_client.get_dataset(space_id=ARIZE_SPACE_ID, dataset_id=dataset_id)See the SDK reference below.
Last updated
Was this helpful?

