Create a Project

To create a project within a workspace we can use create_project() . In the case below, we want to create an object detection model that will detect flowers.

import roboflow

rf = roboflow.Roboflow(api_key="MY_API_KEY")

project = rf.workspace().create_project(
    project_name="Flower detector",
    project_type="object-detection", # Or "classification", "instance-segmentation", "semantic-segmentation"
    project_license="MIT", # "private" for private projects, only available for paid customers 
    annotation="flowers" # If you plan to annotate lillies, sunflowers, etc.
)

Last updated

Was this helpful?