trainYOLO
  • trainYOLO platform
  • Getting started
    • 1. Create a new project
    • 2. Upload images
    • 3. Label images
    • 4. Train model
    • 5. Model-assisted labeling
  • CLI
    • Installation
    • Create project
    • Upload data
    • Export data
    • Upload model
  • SDK
    • Installation
    • Create project
    • Upload data
    • Export data
    • Upload model
    • Upload predictions
Powered by GitBook
On this page
  1. CLI

Upload data

To upload data (images) to a project, use the following command:

$ trainyolo project push <project_name> <image_folder_path>

With

  • project_name: name of the project

  • image_folder_path: path to the folder containing the images

if project_name or image_folder_path contains spaces, best to place it between double quotes

For example, if you want to upload images that are in the folder /home/davy/Pictures/images of cars to a project named car detection, use the following command:

$ trainyolo project push "car detection" "/home/davy/Pictures/images of cars"
PreviousCreate projectNextExport data

Last updated 2 years ago