Delete a Dataset
Permanently remove a dataset and all its assets and annotations from Datature Vi.
Deleting a dataset in Datature Vi permanently removes the dataset, all its images and videos, all annotations, and all associated metadata. The action cannot be undone. Before you delete, consider whether you need to download a backup.
- Deleting a dataset is irreversible.
- You need an existing dataset in your Datature Vi workspace.
- You need Owner-level access to the dataset.
- No active training run should be using this dataset. If one is running, cancel it first.
Once confirmed, all images, videos, annotations, metadata, and statistics are immediately and permanently removed. There is no undo. Trained models continue to function, but you cannot retrain using the deleted dataset. Download a backup if there is any chance you will need this data again.
Open dataset settings

Open the dataset you want to rename. Click the Settings tab at the bottom of the sidebar menu. The Settings page shows dataset configuration options including the Dataset Name field at the top.

The dataset is gone from the browser.
What gets deleted
Deleted immediately:
- All images and videos in the dataset
- All annotations and annotation history
- Dataset metadata, settings, and description
- Insights and statistics
Not affected:
- Completed training runs (history and metrics remain viewable)
- Trained models (deployed models continue to function)
- Previously downloaded backups
- Other datasets in your workspace
- Organization settings and team access
Verify deletion
After deletion:
- The dataset no longer appears in your datasets list.
- Accessing the dataset via a direct link shows a "not found" error.
- API calls to the deleted dataset ID return 404 errors.
Common questions
Do this with the Vi SDK
import vi
client = vi.Client(
secret_key="your-secret-key",
organization_id="your-organization-id"
)
client.datasets.delete(dataset_id="your-dataset-id")For advanced options, see the full SDK reference.
Next steps
Updated about 1 month ago
