You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 15, 2025. It is now read-only.
label-studio-ml init my-ml-backend --script models/bert_classifier.py
cp models/utils.py my-ml-backend/utils.py
# Start ML backend at https://localhost:9090
label-studio-ml start my-ml-backend
# Start Label Studio in the new terminal with the same python environment
label-studio start
Create a project with Choices and Text tags in the labeling config.
Connect the ML backend in the Project settings with https://localhost:9090
Create ML backend with BERT named entity recognizer
label-studio-ml init my-ml-backend --script models/ner.py
cp models/utils.py my-ml-backend/utils.py
# Start ML backend at https://localhost:9090
label-studio-ml start my-ml-backend
# Start Label Studio in the new terminal with the same python environment
label-studio start
Create a project with Labels and Text tags in the labeling config.
Connect the ML backend in the Project settings with https://localhost:9090
Training and inference
The browser opens at https://localhost:8080. Upload your data on Import page then annotate by selecting Labeling page.
Once you've annotate sufficient amount of data, go to Model page and press Start Training button. Once training is finished, model automatically starts serving for inference from Label Studio, and you'll find all model checkpoints inside my-ml-backend/<ml-backend-id>/ directory.
Click here to read more about how to use Machine Learning backend and build Human-in-the-Loop pipelines with Label Studio