heartexlabs / label-studio-sdk

Label Studio SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Label Studio Python SDK

Use this Python SDK to integrate Label Studio into your data science and machine learning pipelines to make data labeling simpler.

With the Label Studio Python SDK, you can perform the following tasks in a Python script:

  • Create a Label Studio project, including setting up a labeling configuration.
  • Import tasks from external or local storage, including pre-annotated tasks.
  • Modify project settings, such as task sampling or the model version used to display predictions.
  • Create annotations from predictions or pre-annotated tasks.
  • Retrieve task annotations, including specific subsets of tasks.
    See the Label Studio SDK Tutorial for example code snippets and additional details.

If you want to take action not supported natively by the SDK, you can call the API directly and consider contributing to the SDK.

About the SDK

This is the first release of the Label Studio SDK. It supports Label Studio Enterprise, Label Studio Teams, and Label Studio Community.

Quickstart

To start using the SDK in your machine learning and data science projects and pipelines, do the following:

  1. Install the SDK using pip: pip install label-studio-sdk
  2. Import label_studio_sdk in your Python script.
  3. Connect to the API and create a project:
from label_studio_sdk import Client

ls = Client(url='http://localhost:8080', api_key='YOUR-API-KEY')
ls.start_project(title='New Project', label_config='<View></View>')

Available classes and methods

The Label Studio SDK includes the following:

  • a Client module to handle authentication
  • a Data Manager module for filtering tasks in Label Studio
  • a Project module to take actions related to Label Studio labeling projects
  • a Utils module for working with the labeling configuration

For all the details, see the reference documentation or review the code directly.

Error logging

To see error logs, you can use stderr (we use logger.error() for error output). If you use console to run SDK commands, you will see all errors there.

Contribute to the SDK

If you want to extend the SDK:

  1. Pull this repository.
  2. Install the SDK locally
  3. Follow the contributing guidance

Examples

These end-to-end examples demonstrate how to use the SDK for specific use cases.

Active learning example

If you want to write a Python script to set up an active learning workflow for labeling and training, review this working active learning example as a Jupyter notebook or start with the active learning python script example.

Weak supervision example

If you want to write a Python script to perform programmatic labeling and use weak supervision to correct the noisy labels, refer to this working weak supervision example as a Jupyter notebook or start with the weak supervision python script example.

About

Label Studio SDK

License:Apache License 2.0


Languages

Language:Python 99.6%Language:Makefile 0.4%