Delete a Dataset in the UI

To delete a dataset on Athina:

  1. Open the dataset you want to delete.

  2. Open the info panel by clicking on the i icon on the top right corner or pressing i.

  3. Click on the three-dot menu next to the dataset name.

  4. Click Delete.

Delete a Dataset via Python SDK

You can also delete a dataset programmatically using the Python SDK.

# Delete a dataset
from athina_client.datasets import Dataset

try:
    response = Dataset.delete_dataset_by_id(dataset_id="c9a43c35-2dee-47f7-aca0-550596ceaae1")
    print(response)
except Exception as e:
    print(f"Failed to get dataset: {e}")