Delete a Training Project

Permanently remove a training project along with all its workflows, runs, and trained models.

Deleting a training project in Datature Vi permanently removes the project and everything inside it: all workflows, training runs, trained models, and history. There is no recovery option.

Before You Start
  • Deleting a training project is irreversible.
  • Any trained models you want to keep already downloaded.
1

Open your training project

Open your training project

Go to Training in the sidebar and click the project you want to rename.

You should see
Training projects list without the deleted project

The project no longer appears in your training projects list. Any direct URLs to the project return a not-found error.

What gets deleted

When you delete a training project, the following are permanently removed:

  • All workflows and their configurations
  • All training runs, metrics, and logs
  • All trained model artifacts
  • Project metadata, settings, and description

These items are not affected:

  • Source datasets (remain intact and usable in other projects)
  • Your organization and team settings
  • Other training projects
  • Compute credit history (past consumption stays in usage records)

Do this with the Vi SDK

import vi

client = vi.Client(
    secret_key="your-secret-key",
    organization_id="your-organization-id"
)

client.training_projects.delete(
    training_project_id="your-training-project-id"
)

For more details, see the full SDK reference.

Next steps

Create A Training Project

Start a new project for your next VLM training initiative.

Manage Workflows

Rename, duplicate, and delete workflows inside a project.

Manage Runs

Monitor and clean up training runs across your projects.