Create project

To create a new project, use the following command:

$ trainyolo project create <project_name> --type <project_type> --categories <project_categories>
 

With:

  • project_name: name of the project

  • type: BBOX or INSTANCE_SEGMENTATION

  • categories: comma-separated list of categories

Best to use double quotes when name or categories contain spaces

For example, for creating a bounding box project named autonomous driving and categories car, bike, and pedestrian, you use the following command:

$ trainyolo project create "autonomous driving" --type BBOX --categories "car,bike,pedestrian"

Last updated