Export a dataset

Export datasets from Arize via code or UI

Export a dataset via Code

You may want to export your datasets to run custom experiments or clean up your data, adding new examples to your golden dataset, and removing ones you don't want to keep.

You can get a dataframe from the datasets in Arize with just a few lines of code.

arize_client = ArizeDatasetsClient(api_key=API_KEY)

dataset = arize_client.get_dataset(space_id=SPACE_ID, dataset_id=dataset_id)

See the SDK reference below.

Export a dataset via UI

You can also export the dataset via the UI.

Last updated

Was this helpful?