Label Studio Quickstart : Chris

Label Studio Quickstart
by: Chris
blow post content copied from  Be on the Right Side of Change
click here to view original post


5/5 - (1 vote)

🏷 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

YouTube Video

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)


June 11, 2023 at 12:53PM
Click here for more details...

=============================
The original post is available in Be on the Right Side of Change by Chris
this post has been published as it is through automation. Automation script brings all the top bloggers post under a single umbrella.
The purpose of this blog, Follow the top Salesforce bloggers and collect all blogs in a single place through automation.
============================

Salesforce