Labelbox / labelpandas

Labelbox Connector for Pandas

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Official Open-Source Labelbox <> Pandas Python Integration

Labelbox enables teams to maximize the value of their unstructured data with its enterprise-grade training data platform. For ML use cases, Labelbox has tools to deploy labelers to annotate data at massive scale, diagnose model performance to prioritize labeling, and plug in existing ML models to speed up labeling. For non-ML use cases, Labelbox has a powerful catalog with auto-computed similarity scores that users can use add metadata tags to large amounts of data with a couple clicks.

Pandas stands as the premier open-source Python library for handling CSV and tabluar data and as one of the most widely used Python libraries in the world.

This GitHub repo stands as an open-source Python library, moderated by the Labelbox Solutions team, in facilitating Labelbox users in uploading data to Labelbox and retreiving data from Labelbox in tabular / CSV format using Pandas.

We strongly encourage collaboration - please free to fork this repo and tweak the code base to work for you own data, and make pull requests if you have suggestions on how to enhance the overall experience, add new features, or improve general performance.

Please report any issues/bugs via Github Issues.

Table of Contents

Requirements

Setup

Set up LabelPandas with the following lines of code:

!pip install labelpandas -q
import labelpandas as lp

api_key = "" # Insert your Labelbox API key here
client = lp.Client(api_key)

Once set up, you can run the following core functions:

  • client.create_data_rows_from_table() : Creates Labelbox data rows (and metadata) given a Pandas table

  • client.export_to_table() : Exports labels (and metadata) from a given Labelbox project and creates a Pandas DataFrame

Example Notebooks

Importing Data from a CSV

Notebook Github Google Colab
Basics: Data Rows from URLs Github Open In Colab
Data Rows from Raw Text* Github Open In Colab
Data Rows from Local Files Github Open In Colab
Data Rows with Metadata Github Open In Colab
Data Rows with Attachments Github Open In Colab
Data Rows with Annotations Github Open In Colab
Putting it all Together Github Open In Colab

Exporting Data to a CSV

Notebook Github Google Colab
Exporting Data to a CSV Github Open In Colab

  • = Coming soon

Provenance

SLSA 3

To enhance the software supply chain security of Labelbox's users, as of 0.1.4, every release contains a SLSA Level 3 Provenance document.
This document provides detailed information about the build process, including the repository and branch from which the package was generated.

By using the SLSA framework's official verifier, you can verify the provenance document to ensure that the package is from a trusted source. Verifying the provenance helps confirm that the package has not been tampered with and was built in a secure environment.

Example of usage for the 0.1.4 release wheel:

VERSION=0.1.4 #tag
gh release download ${VERSION} --repo Labelbox/labelpandas

slsa-verifier verify-artifact --source-branch main --builder-id 'https://github.com/slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@refs/tags/v2.0.0' --source-uri "git+https://github.com/Labelbox/labelpandas" --provenance-path multiple.intoto.jsonl ./labelpandas-${VERSION}-py3-none-any.whl

About

Labelbox Connector for Pandas


Languages

Language:Jupyter Notebook 80.6%Language:Python 19.4%