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. SDK

Installation

To use the python SDK, install the following python package:

$ pip install -qU trainyolo-py

To use the trainyolo library in python, import the trainyolo package and initialize a client:

from trainyolo.client import Client

# You can find your API Key under your avatar, at the top right
APIKEY = "YOUR_API_KEY"
client = Client(APIKEY)
PreviousUpload modelNextCreate project

Last updated 2 years ago