Export a dataset

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.

Last updated

Was this helpful?