Upload, Train, and Deploy a Model
From a folder of images to a hosted, callable model - end to end.
What you'll need
export ROBOFLOW_API_KEY=rf_xxxxx1. Create the project
import roboflow
rf = roboflow.Roboflow()
ws = rf.workspace()
project = ws.create_project(
project_name="My Detector",
project_type="object-detection",
project_license="MIT", # or "Private" on paid plans
annotation="objects", # what you're labeling
)
print(project.id)2. Upload the dataset
3. Generate a version
4. Train
5. Run inference
6. (Optional) Move to a Dedicated Deployment
Variations
Last updated
Was this helpful?