Train a Model

You can start training a model on a specific version of your dataset using the Python SDK.

import roboflow

rf = roboflow.Roboflow(api_key="YOUR_API_KEY")
project = rf.workspace().project("your-project-id")
version = project.version(1)

version.train()

Training happens in the cloud on Roboflow infrastructure. You can monitor training progress from the Roboflow dashboard.