π·οΈ Label Studio is an open-source data labeling tool to label multiple data types such as audio, text, images, videos, and time series. You can export multiple model formats using a simple user interface. It is often used for data preparation to get more accurate machine learning models.
Here’s an example from the GitHub repository:

ποΈ Try It Yourself: You can try out the labeling interface in the Playground.
Install Label Studio
There are multiple ways to install it. For me, the easiest way is to use pip
:
# Requires Python >=3.7 <=3.9 pip install label-studio # Start the server at http://localhost:8080 label-studio
β
Recommended: How to Install a Python Library with pip
?
If you want to install it with Docker (locally), I recommend you check out the docs. The TLDR is to run the following commands:
docker pull heartexlabs/label-studio:latest docker run -it -p 8080:8080 -v $(pwd)/mydata:/label-studio/data heartexlabs/label-studio:latest
You’ll find all generated assets (database storage and uploaded files, for example) in the ./mydata
folder.
Here’s how the user interface looks like:

I recommend you check out the Playground to learn if this applies to your machine-learning labeling pipeline:
Text classification:

Audio classification:

Image classification:

There are many more data types that can be labeled using this platform, I particularly liked the Polygon segmentation:

Overall, a very helpful tool. Let’s finish with the ecosystem of the Label Studio tool:
Ecosystem
Project | Description |
---|---|
label-studio | Server, distributed as a pip package |
label-studio-frontend | React and JavaScript frontend and can run standalone in a web browser or be embedded into your application. |
data-manager | React and JavaScript frontend for managing data. Includes the Label Studio Frontend. Relies on the label-studio server or a custom backend with the expected API methods. |
label-studio-converter | Encode labels in the format of your favorite machine learning library |
label-studio-transformers | Transformers library connected and configured for use with Label Studio |
OpenAI Glossary Cheat Sheet (100% Free PDF Download) π
Finally, check out our free cheat sheet on OpenAI terminology, many Finxters have told me they love it! β₯οΈ
π‘ Recommended: OpenAI Terminology Cheat Sheet (Free Download PDF)