Create a Project
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?